/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the chime-sdk-voice-2022-08-03.normal.json service model.
*/
using System;
using System.Runtime.ExceptionServices;
using System.Threading;
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Net;
using Amazon.ChimeSDKVoice.Model;
using Amazon.ChimeSDKVoice.Model.Internal.MarshallTransformations;
using Amazon.ChimeSDKVoice.Internal;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Runtime.Internal.Auth;
using Amazon.Runtime.Internal.Transform;
namespace Amazon.ChimeSDKVoice
{
///
/// Implementation for accessing ChimeSDKVoice
///
/// The Amazon Chime SDK telephony APIs in this section enable developers to create PSTN
/// calling solutions that use Amazon Chime SDK Voice Connectors, and Amazon Chime SDK
/// SIP media applications. Developers can also order and manage phone numbers, create
/// and manage Voice Connectors and SIP media applications, and run voice analytics.
///
public partial class AmazonChimeSDKVoiceClient : AmazonServiceClient, IAmazonChimeSDKVoice
{
private static IServiceMetadata serviceMetadata = new AmazonChimeSDKVoiceMetadata();
private IChimeSDKVoicePaginatorFactory _paginators;
///
/// Paginators for the service
///
public IChimeSDKVoicePaginatorFactory Paginators
{
get
{
if (this._paginators == null)
{
this._paginators = new ChimeSDKVoicePaginatorFactory(this);
}
return this._paginators;
}
}
#region Constructors
///
/// Constructs AmazonChimeSDKVoiceClient with the credentials loaded from the application's
/// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
///
/// Example App.config with credentials set.
///
/// <?xml version="1.0" encoding="utf-8" ?>
/// <configuration>
/// <appSettings>
/// <add key="AWSProfileName" value="AWS Default"/>
/// </appSettings>
/// </configuration>
///
///
///
public AmazonChimeSDKVoiceClient()
: base(FallbackCredentialsFactory.GetCredentials(), new AmazonChimeSDKVoiceConfig()) { }
///
/// Constructs AmazonChimeSDKVoiceClient with the credentials loaded from the application's
/// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
///
/// Example App.config with credentials set.
///
/// <?xml version="1.0" encoding="utf-8" ?>
/// <configuration>
/// <appSettings>
/// <add key="AWSProfileName" value="AWS Default"/>
/// </appSettings>
/// </configuration>
///
///
///
/// The region to connect.
public AmazonChimeSDKVoiceClient(RegionEndpoint region)
: base(FallbackCredentialsFactory.GetCredentials(), new AmazonChimeSDKVoiceConfig{RegionEndpoint = region}) { }
///
/// Constructs AmazonChimeSDKVoiceClient with the credentials loaded from the application's
/// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
///
/// Example App.config with credentials set.
///
/// <?xml version="1.0" encoding="utf-8" ?>
/// <configuration>
/// <appSettings>
/// <add key="AWSProfileName" value="AWS Default"/>
/// </appSettings>
/// </configuration>
///
///
///
/// The AmazonChimeSDKVoiceClient Configuration Object
public AmazonChimeSDKVoiceClient(AmazonChimeSDKVoiceConfig config)
: base(FallbackCredentialsFactory.GetCredentials(config), config){}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Credentials
///
/// AWS Credentials
public AmazonChimeSDKVoiceClient(AWSCredentials credentials)
: this(credentials, new AmazonChimeSDKVoiceConfig())
{
}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Credentials
///
/// AWS Credentials
/// The region to connect.
public AmazonChimeSDKVoiceClient(AWSCredentials credentials, RegionEndpoint region)
: this(credentials, new AmazonChimeSDKVoiceConfig{RegionEndpoint = region})
{
}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Credentials and an
/// AmazonChimeSDKVoiceClient Configuration object.
///
/// AWS Credentials
/// The AmazonChimeSDKVoiceClient Configuration Object
public AmazonChimeSDKVoiceClient(AWSCredentials credentials, AmazonChimeSDKVoiceConfig clientConfig)
: base(credentials, clientConfig)
{
}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Access Key ID and AWS Secret Key
///
/// AWS Access Key ID
/// AWS Secret Access Key
public AmazonChimeSDKVoiceClient(string awsAccessKeyId, string awsSecretAccessKey)
: this(awsAccessKeyId, awsSecretAccessKey, new AmazonChimeSDKVoiceConfig())
{
}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Access Key ID and AWS Secret Key
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// The region to connect.
public AmazonChimeSDKVoiceClient(string awsAccessKeyId, string awsSecretAccessKey, RegionEndpoint region)
: this(awsAccessKeyId, awsSecretAccessKey, new AmazonChimeSDKVoiceConfig() {RegionEndpoint=region})
{
}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Access Key ID, AWS Secret Key and an
/// AmazonChimeSDKVoiceClient Configuration object.
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// The AmazonChimeSDKVoiceClient Configuration Object
public AmazonChimeSDKVoiceClient(string awsAccessKeyId, string awsSecretAccessKey, AmazonChimeSDKVoiceConfig clientConfig)
: base(awsAccessKeyId, awsSecretAccessKey, clientConfig)
{
}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Access Key ID and AWS Secret Key
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// AWS Session Token
public AmazonChimeSDKVoiceClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken)
: this(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, new AmazonChimeSDKVoiceConfig())
{
}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Access Key ID and AWS Secret Key
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// AWS Session Token
/// The region to connect.
public AmazonChimeSDKVoiceClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, RegionEndpoint region)
: this(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, new AmazonChimeSDKVoiceConfig{RegionEndpoint = region})
{
}
///
/// Constructs AmazonChimeSDKVoiceClient with AWS Access Key ID, AWS Secret Key and an
/// AmazonChimeSDKVoiceClient Configuration object.
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// AWS Session Token
/// The AmazonChimeSDKVoiceClient Configuration Object
public AmazonChimeSDKVoiceClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonChimeSDKVoiceConfig clientConfig)
: base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig)
{
}
#endregion
#region Overrides
///
/// Creates the signer for the service.
///
protected override AbstractAWSSigner CreateSigner()
{
return new AWS4Signer();
}
///
/// Customize the pipeline
///
///
protected override void CustomizeRuntimePipeline(RuntimePipeline pipeline)
{
pipeline.RemoveHandler();
pipeline.AddHandlerAfter(new AmazonChimeSDKVoiceEndpointResolver());
}
///
/// Capture metadata for the service.
///
protected override IServiceMetadata ServiceMetadata
{
get
{
return serviceMetadata;
}
}
#endregion
#region Dispose
///
/// Disposes the service client.
///
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
#endregion
#region AssociatePhoneNumbersWithVoiceConnector
///
/// Associates phone numbers with the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the AssociatePhoneNumbersWithVoiceConnector service method.
///
/// The response from the AssociatePhoneNumbersWithVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for AssociatePhoneNumbersWithVoiceConnector Operation
public virtual AssociatePhoneNumbersWithVoiceConnectorResponse AssociatePhoneNumbersWithVoiceConnector(AssociatePhoneNumbersWithVoiceConnectorRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AssociatePhoneNumbersWithVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = AssociatePhoneNumbersWithVoiceConnectorResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Associates phone numbers with the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the AssociatePhoneNumbersWithVoiceConnector service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the AssociatePhoneNumbersWithVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for AssociatePhoneNumbersWithVoiceConnector Operation
public virtual Task AssociatePhoneNumbersWithVoiceConnectorAsync(AssociatePhoneNumbersWithVoiceConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AssociatePhoneNumbersWithVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = AssociatePhoneNumbersWithVoiceConnectorResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region AssociatePhoneNumbersWithVoiceConnectorGroup
///
/// Associates phone numbers with the specified Amazon Chime SDK Voice Connector group.
///
/// Container for the necessary parameters to execute the AssociatePhoneNumbersWithVoiceConnectorGroup service method.
///
/// The response from the AssociatePhoneNumbersWithVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for AssociatePhoneNumbersWithVoiceConnectorGroup Operation
public virtual AssociatePhoneNumbersWithVoiceConnectorGroupResponse AssociatePhoneNumbersWithVoiceConnectorGroup(AssociatePhoneNumbersWithVoiceConnectorGroupRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AssociatePhoneNumbersWithVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = AssociatePhoneNumbersWithVoiceConnectorGroupResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Associates phone numbers with the specified Amazon Chime SDK Voice Connector group.
///
/// Container for the necessary parameters to execute the AssociatePhoneNumbersWithVoiceConnectorGroup service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the AssociatePhoneNumbersWithVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for AssociatePhoneNumbersWithVoiceConnectorGroup Operation
public virtual Task AssociatePhoneNumbersWithVoiceConnectorGroupAsync(AssociatePhoneNumbersWithVoiceConnectorGroupRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AssociatePhoneNumbersWithVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = AssociatePhoneNumbersWithVoiceConnectorGroupResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region BatchDeletePhoneNumber
///
/// Moves phone numbers into the Deletion queue. Phone numbers must be disassociated
/// from any users or Amazon Chime SDK Voice Connectors before they can be deleted.
///
///
///
/// Phone numbers remain in the Deletion queue for 7 days before they are deleted
/// permanently.
///
///
/// Container for the necessary parameters to execute the BatchDeletePhoneNumber service method.
///
/// The response from the BatchDeletePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for BatchDeletePhoneNumber Operation
public virtual BatchDeletePhoneNumberResponse BatchDeletePhoneNumber(BatchDeletePhoneNumberRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = BatchDeletePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = BatchDeletePhoneNumberResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Moves phone numbers into the Deletion queue. Phone numbers must be disassociated
/// from any users or Amazon Chime SDK Voice Connectors before they can be deleted.
///
///
///
/// Phone numbers remain in the Deletion queue for 7 days before they are deleted
/// permanently.
///
///
/// Container for the necessary parameters to execute the BatchDeletePhoneNumber service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the BatchDeletePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for BatchDeletePhoneNumber Operation
public virtual Task BatchDeletePhoneNumberAsync(BatchDeletePhoneNumberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = BatchDeletePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = BatchDeletePhoneNumberResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region BatchUpdatePhoneNumber
///
/// Updates one or more phone numbers.
///
/// Container for the necessary parameters to execute the BatchUpdatePhoneNumber service method.
///
/// The response from the BatchUpdatePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for BatchUpdatePhoneNumber Operation
public virtual BatchUpdatePhoneNumberResponse BatchUpdatePhoneNumber(BatchUpdatePhoneNumberRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = BatchUpdatePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = BatchUpdatePhoneNumberResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates one or more phone numbers.
///
/// Container for the necessary parameters to execute the BatchUpdatePhoneNumber service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the BatchUpdatePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for BatchUpdatePhoneNumber Operation
public virtual Task BatchUpdatePhoneNumberAsync(BatchUpdatePhoneNumberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = BatchUpdatePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = BatchUpdatePhoneNumberResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreatePhoneNumberOrder
///
/// Creates an order for phone numbers to be provisioned. For numbers outside the U.S.,
/// you must use the Amazon Chime SDK SIP media application dial-in product type.
///
/// Container for the necessary parameters to execute the CreatePhoneNumberOrder service method.
///
/// The response from the CreatePhoneNumberOrder service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreatePhoneNumberOrder Operation
public virtual CreatePhoneNumberOrderResponse CreatePhoneNumberOrder(CreatePhoneNumberOrderRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreatePhoneNumberOrderRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreatePhoneNumberOrderResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates an order for phone numbers to be provisioned. For numbers outside the U.S.,
/// you must use the Amazon Chime SDK SIP media application dial-in product type.
///
/// Container for the necessary parameters to execute the CreatePhoneNumberOrder service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreatePhoneNumberOrder service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreatePhoneNumberOrder Operation
public virtual Task CreatePhoneNumberOrderAsync(CreatePhoneNumberOrderRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreatePhoneNumberOrderRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreatePhoneNumberOrderResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateProxySession
///
/// Creates a proxy session for the specified Amazon Chime SDK Voice Connector for the
/// specified participant phone numbers.
///
/// Container for the necessary parameters to execute the CreateProxySession service method.
///
/// The response from the CreateProxySession service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateProxySession Operation
public virtual CreateProxySessionResponse CreateProxySession(CreateProxySessionRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateProxySessionRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateProxySessionResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates a proxy session for the specified Amazon Chime SDK Voice Connector for the
/// specified participant phone numbers.
///
/// Container for the necessary parameters to execute the CreateProxySession service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateProxySession service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateProxySession Operation
public virtual Task CreateProxySessionAsync(CreateProxySessionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateProxySessionRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateProxySessionResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateSipMediaApplication
///
/// Creates a SIP media application. For more information about SIP media applications,
/// see Managing
/// SIP media applications and rules in the Amazon Chime SDK Administrator Guide.
///
/// Container for the necessary parameters to execute the CreateSipMediaApplication service method.
///
/// The response from the CreateSipMediaApplication service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateSipMediaApplication Operation
public virtual CreateSipMediaApplicationResponse CreateSipMediaApplication(CreateSipMediaApplicationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateSipMediaApplicationRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateSipMediaApplicationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates a SIP media application. For more information about SIP media applications,
/// see Managing
/// SIP media applications and rules in the Amazon Chime SDK Administrator Guide.
///
/// Container for the necessary parameters to execute the CreateSipMediaApplication service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateSipMediaApplication service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateSipMediaApplication Operation
public virtual Task CreateSipMediaApplicationAsync(CreateSipMediaApplicationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateSipMediaApplicationRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateSipMediaApplicationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateSipMediaApplicationCall
///
/// Creates an outbound call to a phone number from the phone number specified in the
/// request, and it invokes the endpoint of the specified sipMediaApplicationId
.
///
/// Container for the necessary parameters to execute the CreateSipMediaApplicationCall service method.
///
/// The response from the CreateSipMediaApplicationCall service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateSipMediaApplicationCall Operation
public virtual CreateSipMediaApplicationCallResponse CreateSipMediaApplicationCall(CreateSipMediaApplicationCallRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateSipMediaApplicationCallRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateSipMediaApplicationCallResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates an outbound call to a phone number from the phone number specified in the
/// request, and it invokes the endpoint of the specified sipMediaApplicationId
.
///
/// Container for the necessary parameters to execute the CreateSipMediaApplicationCall service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateSipMediaApplicationCall service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateSipMediaApplicationCall Operation
public virtual Task CreateSipMediaApplicationCallAsync(CreateSipMediaApplicationCallRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateSipMediaApplicationCallRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateSipMediaApplicationCallResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateSipRule
///
/// Creates a SIP rule, which can be used to run a SIP media application as a target for
/// a specific trigger type. For more information about SIP rules, see Managing
/// SIP media applications and rules in the Amazon Chime SDK Administrator Guide.
///
/// Container for the necessary parameters to execute the CreateSipRule service method.
///
/// The response from the CreateSipRule service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateSipRule Operation
public virtual CreateSipRuleResponse CreateSipRule(CreateSipRuleRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateSipRuleRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateSipRuleResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates a SIP rule, which can be used to run a SIP media application as a target for
/// a specific trigger type. For more information about SIP rules, see Managing
/// SIP media applications and rules in the Amazon Chime SDK Administrator Guide.
///
/// Container for the necessary parameters to execute the CreateSipRule service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateSipRule service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateSipRule Operation
public virtual Task CreateSipRuleAsync(CreateSipRuleRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateSipRuleRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateSipRuleResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateVoiceConnector
///
/// Creates an Amazon Chime SDK Voice Connector. For more information about Voice Connectors,
/// see Managing
/// Amazon Chime SDK Voice Connector groups in the Amazon Chime SDK Administrator
/// Guide.
///
/// Container for the necessary parameters to execute the CreateVoiceConnector service method.
///
/// The response from the CreateVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateVoiceConnector Operation
public virtual CreateVoiceConnectorResponse CreateVoiceConnector(CreateVoiceConnectorRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateVoiceConnectorResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates an Amazon Chime SDK Voice Connector. For more information about Voice Connectors,
/// see Managing
/// Amazon Chime SDK Voice Connector groups in the Amazon Chime SDK Administrator
/// Guide.
///
/// Container for the necessary parameters to execute the CreateVoiceConnector service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateVoiceConnector Operation
public virtual Task CreateVoiceConnectorAsync(CreateVoiceConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateVoiceConnectorResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateVoiceConnectorGroup
///
/// Creates an Amazon Chime SDK Voice Connector group under the administrator's AWS account.
/// You can associate Amazon Chime SDK Voice Connectors with the Voice Connector group
/// by including VoiceConnectorItems
in the request.
///
///
///
/// You can include Voice Connectors from different AWS Regions in your group. This creates
/// a fault tolerant mechanism for fallback in case of availability events.
///
///
/// Container for the necessary parameters to execute the CreateVoiceConnectorGroup service method.
///
/// The response from the CreateVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateVoiceConnectorGroup Operation
public virtual CreateVoiceConnectorGroupResponse CreateVoiceConnectorGroup(CreateVoiceConnectorGroupRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateVoiceConnectorGroupResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates an Amazon Chime SDK Voice Connector group under the administrator's AWS account.
/// You can associate Amazon Chime SDK Voice Connectors with the Voice Connector group
/// by including VoiceConnectorItems
in the request.
///
///
///
/// You can include Voice Connectors from different AWS Regions in your group. This creates
/// a fault tolerant mechanism for fallback in case of availability events.
///
///
/// Container for the necessary parameters to execute the CreateVoiceConnectorGroup service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateVoiceConnectorGroup Operation
public virtual Task CreateVoiceConnectorGroupAsync(CreateVoiceConnectorGroupRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateVoiceConnectorGroupResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateVoiceProfile
///
/// Creates a voice profile, which consists of an enrolled user and their latest voice
/// print.
///
///
///
/// Before creating any voice profiles, you must provide all notices and obtain all consents
/// from the speaker as required under applicable privacy and biometrics laws, and as
/// required under the AWS service terms
/// for the Amazon Chime SDK.
///
///
///
/// For more information about voice profiles and voice analytics, see Using
/// Amazon Chime SDK Voice Analytics in the Amazon Chime SDK Developer Guide.
///
///
/// Container for the necessary parameters to execute the CreateVoiceProfile service method.
///
/// The response from the CreateVoiceProfile service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// Access to the target resource is no longer available at the origin server. This condition
/// is likely to be permanent.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateVoiceProfile Operation
public virtual CreateVoiceProfileResponse CreateVoiceProfile(CreateVoiceProfileRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateVoiceProfileRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateVoiceProfileResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates a voice profile, which consists of an enrolled user and their latest voice
/// print.
///
///
///
/// Before creating any voice profiles, you must provide all notices and obtain all consents
/// from the speaker as required under applicable privacy and biometrics laws, and as
/// required under the AWS service terms
/// for the Amazon Chime SDK.
///
///
///
/// For more information about voice profiles and voice analytics, see Using
/// Amazon Chime SDK Voice Analytics in the Amazon Chime SDK Developer Guide.
///
///
/// Container for the necessary parameters to execute the CreateVoiceProfile service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateVoiceProfile service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// Access to the target resource is no longer available at the origin server. This condition
/// is likely to be permanent.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateVoiceProfile Operation
public virtual Task CreateVoiceProfileAsync(CreateVoiceProfileRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateVoiceProfileRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateVoiceProfileResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateVoiceProfileDomain
///
/// Creates a voice profile domain, a collection of voice profiles, their voice prints,
/// and encrypted enrollment audio.
///
///
///
/// Before creating any voice profiles, you must provide all notices and obtain all consents
/// from the speaker as required under applicable privacy and biometrics laws, and as
/// required under the AWS service terms
/// for the Amazon Chime SDK.
///
///
///
/// For more information about voice profile domains, see Using
/// Amazon Chime SDK Voice Analytics in the Amazon Chime SDK Developer Guide.
///
///
/// Container for the necessary parameters to execute the CreateVoiceProfileDomain service method.
///
/// The response from the CreateVoiceProfileDomain service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateVoiceProfileDomain Operation
public virtual CreateVoiceProfileDomainResponse CreateVoiceProfileDomain(CreateVoiceProfileDomainRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateVoiceProfileDomainRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateVoiceProfileDomainResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates a voice profile domain, a collection of voice profiles, their voice prints,
/// and encrypted enrollment audio.
///
///
///
/// Before creating any voice profiles, you must provide all notices and obtain all consents
/// from the speaker as required under applicable privacy and biometrics laws, and as
/// required under the AWS service terms
/// for the Amazon Chime SDK.
///
///
///
/// For more information about voice profile domains, see Using
/// Amazon Chime SDK Voice Analytics in the Amazon Chime SDK Developer Guide.
///
///
/// Container for the necessary parameters to execute the CreateVoiceProfileDomain service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateVoiceProfileDomain service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for CreateVoiceProfileDomain Operation
public virtual Task CreateVoiceProfileDomainAsync(CreateVoiceProfileDomainRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateVoiceProfileDomainRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateVoiceProfileDomainResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeletePhoneNumber
///
/// Moves the specified phone number into the Deletion queue. A phone number must
/// be disassociated from any users or Amazon Chime SDK Voice Connectors before it can
/// be deleted.
///
///
///
/// Deleted phone numbers remain in the Deletion queue queue for 7 days before
/// they are deleted permanently.
///
///
/// Container for the necessary parameters to execute the DeletePhoneNumber service method.
///
/// The response from the DeletePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeletePhoneNumber Operation
public virtual DeletePhoneNumberResponse DeletePhoneNumber(DeletePhoneNumberRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeletePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeletePhoneNumberResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Moves the specified phone number into the Deletion queue. A phone number must
/// be disassociated from any users or Amazon Chime SDK Voice Connectors before it can
/// be deleted.
///
///
///
/// Deleted phone numbers remain in the Deletion queue queue for 7 days before
/// they are deleted permanently.
///
///
/// Container for the necessary parameters to execute the DeletePhoneNumber service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeletePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeletePhoneNumber Operation
public virtual Task DeletePhoneNumberAsync(DeletePhoneNumberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeletePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeletePhoneNumberResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteProxySession
///
/// Deletes the specified proxy session from the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the DeleteProxySession service method.
///
/// The response from the DeleteProxySession service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteProxySession Operation
public virtual DeleteProxySessionResponse DeleteProxySession(DeleteProxySessionRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteProxySessionRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteProxySessionResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes the specified proxy session from the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the DeleteProxySession service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteProxySession service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteProxySession Operation
public virtual Task DeleteProxySessionAsync(DeleteProxySessionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteProxySessionRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteProxySessionResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteSipMediaApplication
///
/// Deletes a SIP media application.
///
/// Container for the necessary parameters to execute the DeleteSipMediaApplication service method.
///
/// The response from the DeleteSipMediaApplication service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteSipMediaApplication Operation
public virtual DeleteSipMediaApplicationResponse DeleteSipMediaApplication(DeleteSipMediaApplicationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteSipMediaApplicationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteSipMediaApplicationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes a SIP media application.
///
/// Container for the necessary parameters to execute the DeleteSipMediaApplication service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteSipMediaApplication service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteSipMediaApplication Operation
public virtual Task DeleteSipMediaApplicationAsync(DeleteSipMediaApplicationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteSipMediaApplicationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteSipMediaApplicationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteSipRule
///
/// Deletes a SIP rule.
///
/// Container for the necessary parameters to execute the DeleteSipRule service method.
///
/// The response from the DeleteSipRule service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteSipRule Operation
public virtual DeleteSipRuleResponse DeleteSipRule(DeleteSipRuleRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteSipRuleRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteSipRuleResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes a SIP rule.
///
/// Container for the necessary parameters to execute the DeleteSipRule service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteSipRule service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteSipRule Operation
public virtual Task DeleteSipRuleAsync(DeleteSipRuleRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteSipRuleRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteSipRuleResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceConnector
///
/// Deletes an Amazon Chime SDK Voice Connector. Any phone numbers associated with the
/// Amazon Chime SDK Voice Connector must be disassociated from it before it can be deleted.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnector service method.
///
/// The response from the DeleteVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnector Operation
public virtual DeleteVoiceConnectorResponse DeleteVoiceConnector(DeleteVoiceConnectorRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes an Amazon Chime SDK Voice Connector. Any phone numbers associated with the
/// Amazon Chime SDK Voice Connector must be disassociated from it before it can be deleted.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnector service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnector Operation
public virtual Task DeleteVoiceConnectorAsync(DeleteVoiceConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceConnectorEmergencyCallingConfiguration
///
/// Deletes the emergency calling details from the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorEmergencyCallingConfiguration service method.
///
/// The response from the DeleteVoiceConnectorEmergencyCallingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorEmergencyCallingConfiguration Operation
public virtual DeleteVoiceConnectorEmergencyCallingConfigurationResponse DeleteVoiceConnectorEmergencyCallingConfiguration(DeleteVoiceConnectorEmergencyCallingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorEmergencyCallingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorEmergencyCallingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes the emergency calling details from the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorEmergencyCallingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceConnectorEmergencyCallingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorEmergencyCallingConfiguration Operation
public virtual Task DeleteVoiceConnectorEmergencyCallingConfigurationAsync(DeleteVoiceConnectorEmergencyCallingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorEmergencyCallingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorEmergencyCallingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceConnectorGroup
///
/// Deletes an Amazon Chime SDK Voice Connector group. Any VoiceConnectorItems
/// and phone numbers associated with the group must be removed before it can be deleted.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorGroup service method.
///
/// The response from the DeleteVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorGroup Operation
public virtual DeleteVoiceConnectorGroupResponse DeleteVoiceConnectorGroup(DeleteVoiceConnectorGroupRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorGroupResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes an Amazon Chime SDK Voice Connector group. Any VoiceConnectorItems
/// and phone numbers associated with the group must be removed before it can be deleted.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorGroup service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorGroup Operation
public virtual Task DeleteVoiceConnectorGroupAsync(DeleteVoiceConnectorGroupRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorGroupResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceConnectorOrigination
///
/// Deletes the origination settings for the specified Amazon Chime SDK Voice Connector.
///
///
///
///
/// If emergency calling is configured for the Voice Connector, it must be deleted prior
/// to deleting the origination settings.
///
///
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorOrigination service method.
///
/// The response from the DeleteVoiceConnectorOrigination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorOrigination Operation
public virtual DeleteVoiceConnectorOriginationResponse DeleteVoiceConnectorOrigination(DeleteVoiceConnectorOriginationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorOriginationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorOriginationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes the origination settings for the specified Amazon Chime SDK Voice Connector.
///
///
///
///
/// If emergency calling is configured for the Voice Connector, it must be deleted prior
/// to deleting the origination settings.
///
///
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorOrigination service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceConnectorOrigination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorOrigination Operation
public virtual Task DeleteVoiceConnectorOriginationAsync(DeleteVoiceConnectorOriginationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorOriginationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorOriginationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceConnectorProxy
///
/// Deletes the proxy configuration from the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorProxy service method.
///
/// The response from the DeleteVoiceConnectorProxy service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorProxy Operation
public virtual DeleteVoiceConnectorProxyResponse DeleteVoiceConnectorProxy(DeleteVoiceConnectorProxyRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorProxyRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorProxyResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes the proxy configuration from the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorProxy service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceConnectorProxy service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorProxy Operation
public virtual Task DeleteVoiceConnectorProxyAsync(DeleteVoiceConnectorProxyRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorProxyRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorProxyResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceConnectorStreamingConfiguration
///
/// Deletes a Voice Connector's streaming configuration.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorStreamingConfiguration service method.
///
/// The response from the DeleteVoiceConnectorStreamingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorStreamingConfiguration Operation
public virtual DeleteVoiceConnectorStreamingConfigurationResponse DeleteVoiceConnectorStreamingConfiguration(DeleteVoiceConnectorStreamingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorStreamingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorStreamingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes a Voice Connector's streaming configuration.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorStreamingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceConnectorStreamingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorStreamingConfiguration Operation
public virtual Task DeleteVoiceConnectorStreamingConfigurationAsync(DeleteVoiceConnectorStreamingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorStreamingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorStreamingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceConnectorTermination
///
/// Deletes the termination settings for the specified Amazon Chime SDK Voice Connector.
///
///
///
/// If emergency calling is configured for the Voice Connector, it must be deleted prior
/// to deleting the termination settings.
///
///
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorTermination service method.
///
/// The response from the DeleteVoiceConnectorTermination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorTermination Operation
public virtual DeleteVoiceConnectorTerminationResponse DeleteVoiceConnectorTermination(DeleteVoiceConnectorTerminationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorTerminationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorTerminationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes the termination settings for the specified Amazon Chime SDK Voice Connector.
///
///
///
/// If emergency calling is configured for the Voice Connector, it must be deleted prior
/// to deleting the termination settings.
///
///
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorTermination service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceConnectorTermination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorTermination Operation
public virtual Task DeleteVoiceConnectorTerminationAsync(DeleteVoiceConnectorTerminationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorTerminationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorTerminationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceConnectorTerminationCredentials
///
/// Deletes the specified SIP credentials used by your equipment to authenticate during
/// call termination.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorTerminationCredentials service method.
///
/// The response from the DeleteVoiceConnectorTerminationCredentials service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorTerminationCredentials Operation
public virtual DeleteVoiceConnectorTerminationCredentialsResponse DeleteVoiceConnectorTerminationCredentials(DeleteVoiceConnectorTerminationCredentialsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorTerminationCredentialsRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorTerminationCredentialsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes the specified SIP credentials used by your equipment to authenticate during
/// call termination.
///
/// Container for the necessary parameters to execute the DeleteVoiceConnectorTerminationCredentials service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceConnectorTerminationCredentials service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceConnectorTerminationCredentials Operation
public virtual Task DeleteVoiceConnectorTerminationCredentialsAsync(DeleteVoiceConnectorTerminationCredentialsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceConnectorTerminationCredentialsRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceConnectorTerminationCredentialsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceProfile
///
/// Deletes a voice profile, including its voice print and enrollment data. WARNING: This
/// action is not reversible.
///
/// Container for the necessary parameters to execute the DeleteVoiceProfile service method.
///
/// The response from the DeleteVoiceProfile service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceProfile Operation
public virtual DeleteVoiceProfileResponse DeleteVoiceProfile(DeleteVoiceProfileRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceProfileRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceProfileResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes a voice profile, including its voice print and enrollment data. WARNING: This
/// action is not reversible.
///
/// Container for the necessary parameters to execute the DeleteVoiceProfile service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceProfile service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceProfile Operation
public virtual Task DeleteVoiceProfileAsync(DeleteVoiceProfileRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceProfileRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceProfileResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteVoiceProfileDomain
///
/// Deletes all voice profiles in the domain. WARNING: This action is not reversible.
///
/// Container for the necessary parameters to execute the DeleteVoiceProfileDomain service method.
///
/// The response from the DeleteVoiceProfileDomain service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceProfileDomain Operation
public virtual DeleteVoiceProfileDomainResponse DeleteVoiceProfileDomain(DeleteVoiceProfileDomainRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceProfileDomainRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceProfileDomainResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes all voice profiles in the domain. WARNING: This action is not reversible.
///
/// Container for the necessary parameters to execute the DeleteVoiceProfileDomain service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteVoiceProfileDomain service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DeleteVoiceProfileDomain Operation
public virtual Task DeleteVoiceProfileDomainAsync(DeleteVoiceProfileDomainRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteVoiceProfileDomainRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteVoiceProfileDomainResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DisassociatePhoneNumbersFromVoiceConnector
///
/// Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice
/// Connector.
///
/// Container for the necessary parameters to execute the DisassociatePhoneNumbersFromVoiceConnector service method.
///
/// The response from the DisassociatePhoneNumbersFromVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DisassociatePhoneNumbersFromVoiceConnector Operation
public virtual DisassociatePhoneNumbersFromVoiceConnectorResponse DisassociatePhoneNumbersFromVoiceConnector(DisassociatePhoneNumbersFromVoiceConnectorRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DisassociatePhoneNumbersFromVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = DisassociatePhoneNumbersFromVoiceConnectorResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice
/// Connector.
///
/// Container for the necessary parameters to execute the DisassociatePhoneNumbersFromVoiceConnector service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DisassociatePhoneNumbersFromVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DisassociatePhoneNumbersFromVoiceConnector Operation
public virtual Task DisassociatePhoneNumbersFromVoiceConnectorAsync(DisassociatePhoneNumbersFromVoiceConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DisassociatePhoneNumbersFromVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = DisassociatePhoneNumbersFromVoiceConnectorResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DisassociatePhoneNumbersFromVoiceConnectorGroup
///
/// Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice
/// Connector group.
///
/// Container for the necessary parameters to execute the DisassociatePhoneNumbersFromVoiceConnectorGroup service method.
///
/// The response from the DisassociatePhoneNumbersFromVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DisassociatePhoneNumbersFromVoiceConnectorGroup Operation
public virtual DisassociatePhoneNumbersFromVoiceConnectorGroupResponse DisassociatePhoneNumbersFromVoiceConnectorGroup(DisassociatePhoneNumbersFromVoiceConnectorGroupRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DisassociatePhoneNumbersFromVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = DisassociatePhoneNumbersFromVoiceConnectorGroupResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Disassociates the specified phone numbers from the specified Amazon Chime SDK Voice
/// Connector group.
///
/// Container for the necessary parameters to execute the DisassociatePhoneNumbersFromVoiceConnectorGroup service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DisassociatePhoneNumbersFromVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for DisassociatePhoneNumbersFromVoiceConnectorGroup Operation
public virtual Task DisassociatePhoneNumbersFromVoiceConnectorGroupAsync(DisassociatePhoneNumbersFromVoiceConnectorGroupRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DisassociatePhoneNumbersFromVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = DisassociatePhoneNumbersFromVoiceConnectorGroupResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetGlobalSettings
///
/// Retrieves the global settings for the Amazon Chime SDK Voice Connectors in an AWS
/// account.
///
/// Container for the necessary parameters to execute the GetGlobalSettings service method.
///
/// The response from the GetGlobalSettings service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetGlobalSettings Operation
public virtual GetGlobalSettingsResponse GetGlobalSettings(GetGlobalSettingsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetGlobalSettingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetGlobalSettingsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the global settings for the Amazon Chime SDK Voice Connectors in an AWS
/// account.
///
/// Container for the necessary parameters to execute the GetGlobalSettings service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetGlobalSettings service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetGlobalSettings Operation
public virtual Task GetGlobalSettingsAsync(GetGlobalSettingsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetGlobalSettingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetGlobalSettingsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetPhoneNumber
///
/// Retrieves details for the specified phone number ID, such as associations, capabilities,
/// and product type.
///
/// Container for the necessary parameters to execute the GetPhoneNumber service method.
///
/// The response from the GetPhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetPhoneNumber Operation
public virtual GetPhoneNumberResponse GetPhoneNumber(GetPhoneNumberRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetPhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetPhoneNumberResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves details for the specified phone number ID, such as associations, capabilities,
/// and product type.
///
/// Container for the necessary parameters to execute the GetPhoneNumber service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetPhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetPhoneNumber Operation
public virtual Task GetPhoneNumberAsync(GetPhoneNumberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetPhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetPhoneNumberResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetPhoneNumberOrder
///
/// Retrieves details for the specified phone number order, such as the order creation
/// timestamp, phone numbers in E.164 format, product type, and order status.
///
/// Container for the necessary parameters to execute the GetPhoneNumberOrder service method.
///
/// The response from the GetPhoneNumberOrder service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetPhoneNumberOrder Operation
public virtual GetPhoneNumberOrderResponse GetPhoneNumberOrder(GetPhoneNumberOrderRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetPhoneNumberOrderRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetPhoneNumberOrderResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves details for the specified phone number order, such as the order creation
/// timestamp, phone numbers in E.164 format, product type, and order status.
///
/// Container for the necessary parameters to execute the GetPhoneNumberOrder service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetPhoneNumberOrder service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetPhoneNumberOrder Operation
public virtual Task GetPhoneNumberOrderAsync(GetPhoneNumberOrderRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetPhoneNumberOrderRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetPhoneNumberOrderResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetPhoneNumberSettings
///
/// Retrieves the phone number settings for the administrator's AWS account, such as the
/// default outbound calling name.
///
/// Container for the necessary parameters to execute the GetPhoneNumberSettings service method.
///
/// The response from the GetPhoneNumberSettings service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetPhoneNumberSettings Operation
public virtual GetPhoneNumberSettingsResponse GetPhoneNumberSettings(GetPhoneNumberSettingsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetPhoneNumberSettingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetPhoneNumberSettingsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the phone number settings for the administrator's AWS account, such as the
/// default outbound calling name.
///
/// Container for the necessary parameters to execute the GetPhoneNumberSettings service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetPhoneNumberSettings service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetPhoneNumberSettings Operation
public virtual Task GetPhoneNumberSettingsAsync(GetPhoneNumberSettingsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetPhoneNumberSettingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetPhoneNumberSettingsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetProxySession
///
/// Retrieves the specified proxy session details for the specified Amazon Chime SDK Voice
/// Connector.
///
/// Container for the necessary parameters to execute the GetProxySession service method.
///
/// The response from the GetProxySession service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetProxySession Operation
public virtual GetProxySessionResponse GetProxySession(GetProxySessionRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetProxySessionRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetProxySessionResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the specified proxy session details for the specified Amazon Chime SDK Voice
/// Connector.
///
/// Container for the necessary parameters to execute the GetProxySession service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetProxySession service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetProxySession Operation
public virtual Task GetProxySessionAsync(GetProxySessionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetProxySessionRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetProxySessionResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetSipMediaApplication
///
/// Retrieves the information for a SIP media application, including name, AWS Region,
/// and endpoints.
///
/// Container for the necessary parameters to execute the GetSipMediaApplication service method.
///
/// The response from the GetSipMediaApplication service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSipMediaApplication Operation
public virtual GetSipMediaApplicationResponse GetSipMediaApplication(GetSipMediaApplicationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSipMediaApplicationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSipMediaApplicationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the information for a SIP media application, including name, AWS Region,
/// and endpoints.
///
/// Container for the necessary parameters to execute the GetSipMediaApplication service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetSipMediaApplication service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSipMediaApplication Operation
public virtual Task GetSipMediaApplicationAsync(GetSipMediaApplicationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSipMediaApplicationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSipMediaApplicationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetSipMediaApplicationAlexaSkillConfiguration
///
/// Gets the Alexa Skill configuration for the SIP media application.
///
/// Container for the necessary parameters to execute the GetSipMediaApplicationAlexaSkillConfiguration service method.
///
/// The response from the GetSipMediaApplicationAlexaSkillConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSipMediaApplicationAlexaSkillConfiguration Operation
public virtual GetSipMediaApplicationAlexaSkillConfigurationResponse GetSipMediaApplicationAlexaSkillConfiguration(GetSipMediaApplicationAlexaSkillConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSipMediaApplicationAlexaSkillConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSipMediaApplicationAlexaSkillConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Gets the Alexa Skill configuration for the SIP media application.
///
/// Container for the necessary parameters to execute the GetSipMediaApplicationAlexaSkillConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetSipMediaApplicationAlexaSkillConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSipMediaApplicationAlexaSkillConfiguration Operation
public virtual Task GetSipMediaApplicationAlexaSkillConfigurationAsync(GetSipMediaApplicationAlexaSkillConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSipMediaApplicationAlexaSkillConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSipMediaApplicationAlexaSkillConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetSipMediaApplicationLoggingConfiguration
///
/// Retrieves the logging configuration for the specified SIP media application.
///
/// Container for the necessary parameters to execute the GetSipMediaApplicationLoggingConfiguration service method.
///
/// The response from the GetSipMediaApplicationLoggingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSipMediaApplicationLoggingConfiguration Operation
public virtual GetSipMediaApplicationLoggingConfigurationResponse GetSipMediaApplicationLoggingConfiguration(GetSipMediaApplicationLoggingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSipMediaApplicationLoggingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSipMediaApplicationLoggingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the logging configuration for the specified SIP media application.
///
/// Container for the necessary parameters to execute the GetSipMediaApplicationLoggingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetSipMediaApplicationLoggingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSipMediaApplicationLoggingConfiguration Operation
public virtual Task GetSipMediaApplicationLoggingConfigurationAsync(GetSipMediaApplicationLoggingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSipMediaApplicationLoggingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSipMediaApplicationLoggingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetSipRule
///
/// Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and target
/// endpoints.
///
/// Container for the necessary parameters to execute the GetSipRule service method.
///
/// The response from the GetSipRule service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSipRule Operation
public virtual GetSipRuleResponse GetSipRule(GetSipRuleRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSipRuleRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSipRuleResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and target
/// endpoints.
///
/// Container for the necessary parameters to execute the GetSipRule service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetSipRule service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSipRule Operation
public virtual Task GetSipRuleAsync(GetSipRuleRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSipRuleRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSipRuleResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetSpeakerSearchTask
///
/// Retrieves the details of the specified speaker search task.
///
/// Container for the necessary parameters to execute the GetSpeakerSearchTask service method.
///
/// The response from the GetSpeakerSearchTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSpeakerSearchTask Operation
public virtual GetSpeakerSearchTaskResponse GetSpeakerSearchTask(GetSpeakerSearchTaskRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSpeakerSearchTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSpeakerSearchTaskResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the details of the specified speaker search task.
///
/// Container for the necessary parameters to execute the GetSpeakerSearchTask service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetSpeakerSearchTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetSpeakerSearchTask Operation
public virtual Task GetSpeakerSearchTaskAsync(GetSpeakerSearchTaskRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetSpeakerSearchTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetSpeakerSearchTaskResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnector
///
/// Retrieves details for the specified Amazon Chime SDK Voice Connector, such as timestamps,name,
/// outbound host, and encryption requirements.
///
/// Container for the necessary parameters to execute the GetVoiceConnector service method.
///
/// The response from the GetVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnector Operation
public virtual GetVoiceConnectorResponse GetVoiceConnector(GetVoiceConnectorRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves details for the specified Amazon Chime SDK Voice Connector, such as timestamps,name,
/// outbound host, and encryption requirements.
///
/// Container for the necessary parameters to execute the GetVoiceConnector service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnector service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnector Operation
public virtual Task GetVoiceConnectorAsync(GetVoiceConnectorRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnectorEmergencyCallingConfiguration
///
/// Retrieves the emergency calling configuration details for the specified Voice Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorEmergencyCallingConfiguration service method.
///
/// The response from the GetVoiceConnectorEmergencyCallingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorEmergencyCallingConfiguration Operation
public virtual GetVoiceConnectorEmergencyCallingConfigurationResponse GetVoiceConnectorEmergencyCallingConfiguration(GetVoiceConnectorEmergencyCallingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorEmergencyCallingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorEmergencyCallingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the emergency calling configuration details for the specified Voice Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorEmergencyCallingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnectorEmergencyCallingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorEmergencyCallingConfiguration Operation
public virtual Task GetVoiceConnectorEmergencyCallingConfigurationAsync(GetVoiceConnectorEmergencyCallingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorEmergencyCallingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorEmergencyCallingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnectorGroup
///
/// Retrieves details for the specified Amazon Chime SDK Voice Connector group, such as
/// timestamps,name, and associated VoiceConnectorItems
.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorGroup service method.
///
/// The response from the GetVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorGroup Operation
public virtual GetVoiceConnectorGroupResponse GetVoiceConnectorGroup(GetVoiceConnectorGroupRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorGroupResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves details for the specified Amazon Chime SDK Voice Connector group, such as
/// timestamps,name, and associated VoiceConnectorItems
.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorGroup service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnectorGroup service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorGroup Operation
public virtual Task GetVoiceConnectorGroupAsync(GetVoiceConnectorGroupRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorGroupResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnectorLoggingConfiguration
///
/// Retrieves the logging configuration settings for the specified Voice Connector. Shows
/// whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorLoggingConfiguration service method.
///
/// The response from the GetVoiceConnectorLoggingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorLoggingConfiguration Operation
public virtual GetVoiceConnectorLoggingConfigurationResponse GetVoiceConnectorLoggingConfiguration(GetVoiceConnectorLoggingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorLoggingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorLoggingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the logging configuration settings for the specified Voice Connector. Shows
/// whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorLoggingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnectorLoggingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorLoggingConfiguration Operation
public virtual Task GetVoiceConnectorLoggingConfigurationAsync(GetVoiceConnectorLoggingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorLoggingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorLoggingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnectorOrigination
///
/// Retrieves the origination settings for the specified Voice Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorOrigination service method.
///
/// The response from the GetVoiceConnectorOrigination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorOrigination Operation
public virtual GetVoiceConnectorOriginationResponse GetVoiceConnectorOrigination(GetVoiceConnectorOriginationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorOriginationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorOriginationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the origination settings for the specified Voice Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorOrigination service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnectorOrigination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorOrigination Operation
public virtual Task GetVoiceConnectorOriginationAsync(GetVoiceConnectorOriginationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorOriginationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorOriginationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnectorProxy
///
/// Retrieves the proxy configuration details for the specified Amazon Chime SDK Voice
/// Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorProxy service method.
///
/// The response from the GetVoiceConnectorProxy service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorProxy Operation
public virtual GetVoiceConnectorProxyResponse GetVoiceConnectorProxy(GetVoiceConnectorProxyRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorProxyRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorProxyResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the proxy configuration details for the specified Amazon Chime SDK Voice
/// Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorProxy service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnectorProxy service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorProxy Operation
public virtual Task GetVoiceConnectorProxyAsync(GetVoiceConnectorProxyRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorProxyRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorProxyResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnectorStreamingConfiguration
///
/// Retrieves the streaming configuration details for the specified Amazon Chime SDK Voice
/// Connector. Shows whether media streaming is enabled for sending to Amazon Kinesis.
/// It also shows the retention period, in hours, for the Amazon Kinesis data.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorStreamingConfiguration service method.
///
/// The response from the GetVoiceConnectorStreamingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorStreamingConfiguration Operation
public virtual GetVoiceConnectorStreamingConfigurationResponse GetVoiceConnectorStreamingConfiguration(GetVoiceConnectorStreamingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorStreamingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorStreamingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the streaming configuration details for the specified Amazon Chime SDK Voice
/// Connector. Shows whether media streaming is enabled for sending to Amazon Kinesis.
/// It also shows the retention period, in hours, for the Amazon Kinesis data.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorStreamingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnectorStreamingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorStreamingConfiguration Operation
public virtual Task GetVoiceConnectorStreamingConfigurationAsync(GetVoiceConnectorStreamingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorStreamingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorStreamingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnectorTermination
///
/// Retrieves the termination setting details for the specified Voice Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorTermination service method.
///
/// The response from the GetVoiceConnectorTermination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorTermination Operation
public virtual GetVoiceConnectorTerminationResponse GetVoiceConnectorTermination(GetVoiceConnectorTerminationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorTerminationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorTerminationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the termination setting details for the specified Voice Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorTermination service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnectorTermination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorTermination Operation
public virtual Task GetVoiceConnectorTerminationAsync(GetVoiceConnectorTerminationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorTerminationRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorTerminationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceConnectorTerminationHealth
///
/// Retrieves information about the last time a SIP OPTIONS
ping was received
/// from your SIP infrastructure for the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorTerminationHealth service method.
///
/// The response from the GetVoiceConnectorTerminationHealth service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorTerminationHealth Operation
public virtual GetVoiceConnectorTerminationHealthResponse GetVoiceConnectorTerminationHealth(GetVoiceConnectorTerminationHealthRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorTerminationHealthRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorTerminationHealthResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves information about the last time a SIP OPTIONS
ping was received
/// from your SIP infrastructure for the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the GetVoiceConnectorTerminationHealth service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceConnectorTerminationHealth service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceConnectorTerminationHealth Operation
public virtual Task GetVoiceConnectorTerminationHealthAsync(GetVoiceConnectorTerminationHealthRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceConnectorTerminationHealthRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceConnectorTerminationHealthResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceProfile
///
/// Retrieves the details of the specified voice profile.
///
/// Container for the necessary parameters to execute the GetVoiceProfile service method.
///
/// The response from the GetVoiceProfile service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceProfile Operation
public virtual GetVoiceProfileResponse GetVoiceProfile(GetVoiceProfileRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceProfileRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceProfileResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the details of the specified voice profile.
///
/// Container for the necessary parameters to execute the GetVoiceProfile service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceProfile service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceProfile Operation
public virtual Task GetVoiceProfileAsync(GetVoiceProfileRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceProfileRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceProfileResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceProfileDomain
///
/// Retrieves the details of the specified voice profile domain.
///
/// Container for the necessary parameters to execute the GetVoiceProfileDomain service method.
///
/// The response from the GetVoiceProfileDomain service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceProfileDomain Operation
public virtual GetVoiceProfileDomainResponse GetVoiceProfileDomain(GetVoiceProfileDomainRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceProfileDomainRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceProfileDomainResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the details of the specified voice profile domain.
///
/// Container for the necessary parameters to execute the GetVoiceProfileDomain service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceProfileDomain service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceProfileDomain Operation
public virtual Task GetVoiceProfileDomainAsync(GetVoiceProfileDomainRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceProfileDomainRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceProfileDomainResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GetVoiceToneAnalysisTask
///
/// Retrieves the details of a voice tone analysis task.
///
/// Container for the necessary parameters to execute the GetVoiceToneAnalysisTask service method.
///
/// The response from the GetVoiceToneAnalysisTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceToneAnalysisTask Operation
public virtual GetVoiceToneAnalysisTaskResponse GetVoiceToneAnalysisTask(GetVoiceToneAnalysisTaskRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceToneAnalysisTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceToneAnalysisTaskResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Retrieves the details of a voice tone analysis task.
///
/// Container for the necessary parameters to execute the GetVoiceToneAnalysisTask service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GetVoiceToneAnalysisTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for GetVoiceToneAnalysisTask Operation
public virtual Task GetVoiceToneAnalysisTaskAsync(GetVoiceToneAnalysisTaskRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GetVoiceToneAnalysisTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = GetVoiceToneAnalysisTaskResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListAvailableVoiceConnectorRegions
///
/// Lists the available AWS Regions in which you can create an Amazon Chime SDK Voice
/// Connector.
///
/// Container for the necessary parameters to execute the ListAvailableVoiceConnectorRegions service method.
///
/// The response from the ListAvailableVoiceConnectorRegions service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListAvailableVoiceConnectorRegions Operation
public virtual ListAvailableVoiceConnectorRegionsResponse ListAvailableVoiceConnectorRegions(ListAvailableVoiceConnectorRegionsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListAvailableVoiceConnectorRegionsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListAvailableVoiceConnectorRegionsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the available AWS Regions in which you can create an Amazon Chime SDK Voice
/// Connector.
///
/// Container for the necessary parameters to execute the ListAvailableVoiceConnectorRegions service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListAvailableVoiceConnectorRegions service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListAvailableVoiceConnectorRegions Operation
public virtual Task ListAvailableVoiceConnectorRegionsAsync(ListAvailableVoiceConnectorRegionsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListAvailableVoiceConnectorRegionsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListAvailableVoiceConnectorRegionsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListPhoneNumberOrders
///
/// Lists the phone numbers for an administrator's Amazon Chime SDK account.
///
/// Container for the necessary parameters to execute the ListPhoneNumberOrders service method.
///
/// The response from the ListPhoneNumberOrders service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListPhoneNumberOrders Operation
public virtual ListPhoneNumberOrdersResponse ListPhoneNumberOrders(ListPhoneNumberOrdersRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListPhoneNumberOrdersRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListPhoneNumberOrdersResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the phone numbers for an administrator's Amazon Chime SDK account.
///
/// Container for the necessary parameters to execute the ListPhoneNumberOrders service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListPhoneNumberOrders service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListPhoneNumberOrders Operation
public virtual Task ListPhoneNumberOrdersAsync(ListPhoneNumberOrdersRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListPhoneNumberOrdersRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListPhoneNumberOrdersResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListPhoneNumbers
///
/// Lists the phone numbers for the specified Amazon Chime SDK account, Amazon Chime SDK
/// user, Amazon Chime SDK Voice Connector, or Amazon Chime SDK Voice Connector group.
///
/// Container for the necessary parameters to execute the ListPhoneNumbers service method.
///
/// The response from the ListPhoneNumbers service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListPhoneNumbers Operation
public virtual ListPhoneNumbersResponse ListPhoneNumbers(ListPhoneNumbersRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListPhoneNumbersRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListPhoneNumbersResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the phone numbers for the specified Amazon Chime SDK account, Amazon Chime SDK
/// user, Amazon Chime SDK Voice Connector, or Amazon Chime SDK Voice Connector group.
///
/// Container for the necessary parameters to execute the ListPhoneNumbers service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListPhoneNumbers service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListPhoneNumbers Operation
public virtual Task ListPhoneNumbersAsync(ListPhoneNumbersRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListPhoneNumbersRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListPhoneNumbersResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListProxySessions
///
/// Lists the proxy sessions for the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the ListProxySessions service method.
///
/// The response from the ListProxySessions service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListProxySessions Operation
public virtual ListProxySessionsResponse ListProxySessions(ListProxySessionsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListProxySessionsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListProxySessionsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the proxy sessions for the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the ListProxySessions service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListProxySessions service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListProxySessions Operation
public virtual Task ListProxySessionsAsync(ListProxySessionsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListProxySessionsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListProxySessionsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListSipMediaApplications
///
/// Lists the SIP media applications under the administrator's AWS account.
///
/// Container for the necessary parameters to execute the ListSipMediaApplications service method.
///
/// The response from the ListSipMediaApplications service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListSipMediaApplications Operation
public virtual ListSipMediaApplicationsResponse ListSipMediaApplications(ListSipMediaApplicationsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListSipMediaApplicationsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListSipMediaApplicationsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the SIP media applications under the administrator's AWS account.
///
/// Container for the necessary parameters to execute the ListSipMediaApplications service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListSipMediaApplications service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListSipMediaApplications Operation
public virtual Task ListSipMediaApplicationsAsync(ListSipMediaApplicationsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListSipMediaApplicationsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListSipMediaApplicationsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListSipRules
///
/// Lists the SIP rules under the administrator's AWS account.
///
/// Container for the necessary parameters to execute the ListSipRules service method.
///
/// The response from the ListSipRules service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListSipRules Operation
public virtual ListSipRulesResponse ListSipRules(ListSipRulesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListSipRulesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListSipRulesResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the SIP rules under the administrator's AWS account.
///
/// Container for the necessary parameters to execute the ListSipRules service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListSipRules service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListSipRules Operation
public virtual Task ListSipRulesAsync(ListSipRulesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListSipRulesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListSipRulesResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListSupportedPhoneNumberCountries
///
/// Lists the countries that you can order phone numbers from.
///
/// Container for the necessary parameters to execute the ListSupportedPhoneNumberCountries service method.
///
/// The response from the ListSupportedPhoneNumberCountries service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListSupportedPhoneNumberCountries Operation
public virtual ListSupportedPhoneNumberCountriesResponse ListSupportedPhoneNumberCountries(ListSupportedPhoneNumberCountriesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListSupportedPhoneNumberCountriesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListSupportedPhoneNumberCountriesResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the countries that you can order phone numbers from.
///
/// Container for the necessary parameters to execute the ListSupportedPhoneNumberCountries service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListSupportedPhoneNumberCountries service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListSupportedPhoneNumberCountries Operation
public virtual Task ListSupportedPhoneNumberCountriesAsync(ListSupportedPhoneNumberCountriesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListSupportedPhoneNumberCountriesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListSupportedPhoneNumberCountriesResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListTagsForResource
///
/// Returns a list of the tags in a given resource.
///
/// Container for the necessary parameters to execute the ListTagsForResource service method.
///
/// The response from the ListTagsForResource service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListTagsForResource Operation
public virtual ListTagsForResourceResponse ListTagsForResource(ListTagsForResourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListTagsForResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListTagsForResourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Returns a list of the tags in a given resource.
///
/// Container for the necessary parameters to execute the ListTagsForResource service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListTagsForResource service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListTagsForResource Operation
public virtual Task ListTagsForResourceAsync(ListTagsForResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListTagsForResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListTagsForResourceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListVoiceConnectorGroups
///
/// Lists the Amazon Chime SDK Voice Connector groups in the administrator's AWS account.
///
/// Container for the necessary parameters to execute the ListVoiceConnectorGroups service method.
///
/// The response from the ListVoiceConnectorGroups service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceConnectorGroups Operation
public virtual ListVoiceConnectorGroupsResponse ListVoiceConnectorGroups(ListVoiceConnectorGroupsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceConnectorGroupsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceConnectorGroupsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the Amazon Chime SDK Voice Connector groups in the administrator's AWS account.
///
/// Container for the necessary parameters to execute the ListVoiceConnectorGroups service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListVoiceConnectorGroups service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceConnectorGroups Operation
public virtual Task ListVoiceConnectorGroupsAsync(ListVoiceConnectorGroupsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceConnectorGroupsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceConnectorGroupsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListVoiceConnectors
///
/// Lists the Amazon Chime SDK Voice Connectors in the administrators AWS account.
///
/// Container for the necessary parameters to execute the ListVoiceConnectors service method.
///
/// The response from the ListVoiceConnectors service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceConnectors Operation
public virtual ListVoiceConnectorsResponse ListVoiceConnectors(ListVoiceConnectorsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceConnectorsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceConnectorsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the Amazon Chime SDK Voice Connectors in the administrators AWS account.
///
/// Container for the necessary parameters to execute the ListVoiceConnectors service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListVoiceConnectors service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceConnectors Operation
public virtual Task ListVoiceConnectorsAsync(ListVoiceConnectorsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceConnectorsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceConnectorsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListVoiceConnectorTerminationCredentials
///
/// Lists the SIP credentials for the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the ListVoiceConnectorTerminationCredentials service method.
///
/// The response from the ListVoiceConnectorTerminationCredentials service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceConnectorTerminationCredentials Operation
public virtual ListVoiceConnectorTerminationCredentialsResponse ListVoiceConnectorTerminationCredentials(ListVoiceConnectorTerminationCredentialsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceConnectorTerminationCredentialsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceConnectorTerminationCredentialsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the SIP credentials for the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the ListVoiceConnectorTerminationCredentials service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListVoiceConnectorTerminationCredentials service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceConnectorTerminationCredentials Operation
public virtual Task ListVoiceConnectorTerminationCredentialsAsync(ListVoiceConnectorTerminationCredentialsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceConnectorTerminationCredentialsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceConnectorTerminationCredentialsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListVoiceProfileDomains
///
/// Lists the specified voice profile domains in the administrator's AWS account.
///
/// Container for the necessary parameters to execute the ListVoiceProfileDomains service method.
///
/// The response from the ListVoiceProfileDomains service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceProfileDomains Operation
public virtual ListVoiceProfileDomainsResponse ListVoiceProfileDomains(ListVoiceProfileDomainsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceProfileDomainsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceProfileDomainsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the specified voice profile domains in the administrator's AWS account.
///
/// Container for the necessary parameters to execute the ListVoiceProfileDomains service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListVoiceProfileDomains service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceProfileDomains Operation
public virtual Task ListVoiceProfileDomainsAsync(ListVoiceProfileDomainsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceProfileDomainsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceProfileDomainsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListVoiceProfiles
///
/// Lists the voice profiles in a voice profile domain.
///
/// Container for the necessary parameters to execute the ListVoiceProfiles service method.
///
/// The response from the ListVoiceProfiles service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceProfiles Operation
public virtual ListVoiceProfilesResponse ListVoiceProfiles(ListVoiceProfilesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceProfilesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceProfilesResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Lists the voice profiles in a voice profile domain.
///
/// Container for the necessary parameters to execute the ListVoiceProfiles service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListVoiceProfiles service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for ListVoiceProfiles Operation
public virtual Task ListVoiceProfilesAsync(ListVoiceProfilesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListVoiceProfilesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListVoiceProfilesResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutSipMediaApplicationAlexaSkillConfiguration
///
/// Updates the Alexa Skill configuration for the SIP media application.
///
/// Container for the necessary parameters to execute the PutSipMediaApplicationAlexaSkillConfiguration service method.
///
/// The response from the PutSipMediaApplicationAlexaSkillConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutSipMediaApplicationAlexaSkillConfiguration Operation
public virtual PutSipMediaApplicationAlexaSkillConfigurationResponse PutSipMediaApplicationAlexaSkillConfiguration(PutSipMediaApplicationAlexaSkillConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutSipMediaApplicationAlexaSkillConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutSipMediaApplicationAlexaSkillConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates the Alexa Skill configuration for the SIP media application.
///
/// Container for the necessary parameters to execute the PutSipMediaApplicationAlexaSkillConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutSipMediaApplicationAlexaSkillConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutSipMediaApplicationAlexaSkillConfiguration Operation
public virtual Task PutSipMediaApplicationAlexaSkillConfigurationAsync(PutSipMediaApplicationAlexaSkillConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutSipMediaApplicationAlexaSkillConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutSipMediaApplicationAlexaSkillConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutSipMediaApplicationLoggingConfiguration
///
/// Updates the logging configuration for the specified SIP media application.
///
/// Container for the necessary parameters to execute the PutSipMediaApplicationLoggingConfiguration service method.
///
/// The response from the PutSipMediaApplicationLoggingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutSipMediaApplicationLoggingConfiguration Operation
public virtual PutSipMediaApplicationLoggingConfigurationResponse PutSipMediaApplicationLoggingConfiguration(PutSipMediaApplicationLoggingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutSipMediaApplicationLoggingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutSipMediaApplicationLoggingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates the logging configuration for the specified SIP media application.
///
/// Container for the necessary parameters to execute the PutSipMediaApplicationLoggingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutSipMediaApplicationLoggingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutSipMediaApplicationLoggingConfiguration Operation
public virtual Task PutSipMediaApplicationLoggingConfigurationAsync(PutSipMediaApplicationLoggingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutSipMediaApplicationLoggingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutSipMediaApplicationLoggingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutVoiceConnectorEmergencyCallingConfiguration
///
/// Updates a Voice Connector's emergency calling configuration.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorEmergencyCallingConfiguration service method.
///
/// The response from the PutVoiceConnectorEmergencyCallingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorEmergencyCallingConfiguration Operation
public virtual PutVoiceConnectorEmergencyCallingConfigurationResponse PutVoiceConnectorEmergencyCallingConfiguration(PutVoiceConnectorEmergencyCallingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorEmergencyCallingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorEmergencyCallingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates a Voice Connector's emergency calling configuration.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorEmergencyCallingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutVoiceConnectorEmergencyCallingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorEmergencyCallingConfiguration Operation
public virtual Task PutVoiceConnectorEmergencyCallingConfigurationAsync(PutVoiceConnectorEmergencyCallingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorEmergencyCallingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorEmergencyCallingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutVoiceConnectorLoggingConfiguration
///
/// Updates a Voice Connector's logging configuration.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorLoggingConfiguration service method.
///
/// The response from the PutVoiceConnectorLoggingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorLoggingConfiguration Operation
public virtual PutVoiceConnectorLoggingConfigurationResponse PutVoiceConnectorLoggingConfiguration(PutVoiceConnectorLoggingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorLoggingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorLoggingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates a Voice Connector's logging configuration.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorLoggingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutVoiceConnectorLoggingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorLoggingConfiguration Operation
public virtual Task PutVoiceConnectorLoggingConfigurationAsync(PutVoiceConnectorLoggingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorLoggingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorLoggingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutVoiceConnectorOrigination
///
/// Updates a Voice Connector's origination settings.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorOrigination service method.
///
/// The response from the PutVoiceConnectorOrigination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorOrigination Operation
public virtual PutVoiceConnectorOriginationResponse PutVoiceConnectorOrigination(PutVoiceConnectorOriginationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorOriginationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorOriginationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates a Voice Connector's origination settings.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorOrigination service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutVoiceConnectorOrigination service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorOrigination Operation
public virtual Task PutVoiceConnectorOriginationAsync(PutVoiceConnectorOriginationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorOriginationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorOriginationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutVoiceConnectorProxy
///
/// Puts the specified proxy configuration to the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorProxy service method.
///
/// The response from the PutVoiceConnectorProxy service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorProxy Operation
public virtual PutVoiceConnectorProxyResponse PutVoiceConnectorProxy(PutVoiceConnectorProxyRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorProxyRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorProxyResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Puts the specified proxy configuration to the specified Amazon Chime SDK Voice Connector.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorProxy service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutVoiceConnectorProxy service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorProxy Operation
public virtual Task PutVoiceConnectorProxyAsync(PutVoiceConnectorProxyRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorProxyRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorProxyResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutVoiceConnectorStreamingConfiguration
///
/// Updates a Voice Connector's streaming configuration settings.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorStreamingConfiguration service method.
///
/// The response from the PutVoiceConnectorStreamingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorStreamingConfiguration Operation
public virtual PutVoiceConnectorStreamingConfigurationResponse PutVoiceConnectorStreamingConfiguration(PutVoiceConnectorStreamingConfigurationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorStreamingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorStreamingConfigurationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates a Voice Connector's streaming configuration settings.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorStreamingConfiguration service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutVoiceConnectorStreamingConfiguration service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorStreamingConfiguration Operation
public virtual Task PutVoiceConnectorStreamingConfigurationAsync(PutVoiceConnectorStreamingConfigurationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorStreamingConfigurationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorStreamingConfigurationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutVoiceConnectorTermination
///
/// Updates a Voice Connector's termination settings.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorTermination service method.
///
/// The response from the PutVoiceConnectorTermination service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorTermination Operation
public virtual PutVoiceConnectorTerminationResponse PutVoiceConnectorTermination(PutVoiceConnectorTerminationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorTerminationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorTerminationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates a Voice Connector's termination settings.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorTermination service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutVoiceConnectorTermination service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorTermination Operation
public virtual Task PutVoiceConnectorTerminationAsync(PutVoiceConnectorTerminationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorTerminationRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorTerminationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region PutVoiceConnectorTerminationCredentials
///
/// Updates a Voice Connector's termination credentials.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorTerminationCredentials service method.
///
/// The response from the PutVoiceConnectorTerminationCredentials service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorTerminationCredentials Operation
public virtual PutVoiceConnectorTerminationCredentialsResponse PutVoiceConnectorTerminationCredentials(PutVoiceConnectorTerminationCredentialsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorTerminationCredentialsRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorTerminationCredentialsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates a Voice Connector's termination credentials.
///
/// Container for the necessary parameters to execute the PutVoiceConnectorTerminationCredentials service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PutVoiceConnectorTerminationCredentials service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for PutVoiceConnectorTerminationCredentials Operation
public virtual Task PutVoiceConnectorTerminationCredentialsAsync(PutVoiceConnectorTerminationCredentialsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PutVoiceConnectorTerminationCredentialsRequestMarshaller.Instance;
options.ResponseUnmarshaller = PutVoiceConnectorTerminationCredentialsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region RestorePhoneNumber
///
/// Restores a deleted phone number.
///
/// Container for the necessary parameters to execute the RestorePhoneNumber service method.
///
/// The response from the RestorePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for RestorePhoneNumber Operation
public virtual RestorePhoneNumberResponse RestorePhoneNumber(RestorePhoneNumberRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = RestorePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = RestorePhoneNumberResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Restores a deleted phone number.
///
/// Container for the necessary parameters to execute the RestorePhoneNumber service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the RestorePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for RestorePhoneNumber Operation
public virtual Task RestorePhoneNumberAsync(RestorePhoneNumberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = RestorePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = RestorePhoneNumberResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region SearchAvailablePhoneNumbers
///
/// Searches the provisioned phone numbers in an organization.
///
/// Container for the necessary parameters to execute the SearchAvailablePhoneNumbers service method.
///
/// The response from the SearchAvailablePhoneNumbers service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for SearchAvailablePhoneNumbers Operation
public virtual SearchAvailablePhoneNumbersResponse SearchAvailablePhoneNumbers(SearchAvailablePhoneNumbersRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = SearchAvailablePhoneNumbersRequestMarshaller.Instance;
options.ResponseUnmarshaller = SearchAvailablePhoneNumbersResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Searches the provisioned phone numbers in an organization.
///
/// Container for the necessary parameters to execute the SearchAvailablePhoneNumbers service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the SearchAvailablePhoneNumbers service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for SearchAvailablePhoneNumbers Operation
public virtual Task SearchAvailablePhoneNumbersAsync(SearchAvailablePhoneNumbersRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = SearchAvailablePhoneNumbersRequestMarshaller.Instance;
options.ResponseUnmarshaller = SearchAvailablePhoneNumbersResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region StartSpeakerSearchTask
///
/// Starts a speaker search task.
///
///
///
/// Before starting any speaker search tasks, you must provide all notices and obtain
/// all consents from the speaker as required under applicable privacy and biometrics
/// laws, and as required under the AWS
/// service terms for the Amazon Chime SDK.
///
///
///
/// Container for the necessary parameters to execute the StartSpeakerSearchTask service method.
///
/// The response from the StartSpeakerSearchTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// Access to the target resource is no longer available at the origin server. This condition
/// is likely to be permanent.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
///
/// A well-formed request couldn't be followed due to semantic errors.
///
/// REST API Reference for StartSpeakerSearchTask Operation
public virtual StartSpeakerSearchTaskResponse StartSpeakerSearchTask(StartSpeakerSearchTaskRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = StartSpeakerSearchTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = StartSpeakerSearchTaskResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Starts a speaker search task.
///
///
///
/// Before starting any speaker search tasks, you must provide all notices and obtain
/// all consents from the speaker as required under applicable privacy and biometrics
/// laws, and as required under the AWS
/// service terms for the Amazon Chime SDK.
///
///
///
/// Container for the necessary parameters to execute the StartSpeakerSearchTask service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the StartSpeakerSearchTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// Access to the target resource is no longer available at the origin server. This condition
/// is likely to be permanent.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
///
/// A well-formed request couldn't be followed due to semantic errors.
///
/// REST API Reference for StartSpeakerSearchTask Operation
public virtual Task StartSpeakerSearchTaskAsync(StartSpeakerSearchTaskRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = StartSpeakerSearchTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = StartSpeakerSearchTaskResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region StartVoiceToneAnalysisTask
///
/// Starts a voice tone analysis task. For more information about voice tone analysis,
/// see Using
/// Amazon Chime SDK voice analytics in the Amazon Chime SDK Developer Guide.
///
///
///
/// Before starting any voice tone analysis tasks, you must provide all notices and obtain
/// all consents from the speaker as required under applicable privacy and biometrics
/// laws, and as required under the AWS
/// service terms for the Amazon Chime SDK.
///
///
///
/// Container for the necessary parameters to execute the StartVoiceToneAnalysisTask service method.
///
/// The response from the StartVoiceToneAnalysisTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// Access to the target resource is no longer available at the origin server. This condition
/// is likely to be permanent.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
///
/// A well-formed request couldn't be followed due to semantic errors.
///
/// REST API Reference for StartVoiceToneAnalysisTask Operation
public virtual StartVoiceToneAnalysisTaskResponse StartVoiceToneAnalysisTask(StartVoiceToneAnalysisTaskRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = StartVoiceToneAnalysisTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = StartVoiceToneAnalysisTaskResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Starts a voice tone analysis task. For more information about voice tone analysis,
/// see Using
/// Amazon Chime SDK voice analytics in the Amazon Chime SDK Developer Guide.
///
///
///
/// Before starting any voice tone analysis tasks, you must provide all notices and obtain
/// all consents from the speaker as required under applicable privacy and biometrics
/// laws, and as required under the AWS
/// service terms for the Amazon Chime SDK.
///
///
///
/// Container for the necessary parameters to execute the StartVoiceToneAnalysisTask service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the StartVoiceToneAnalysisTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// Access to the target resource is no longer available at the origin server. This condition
/// is likely to be permanent.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
///
/// A well-formed request couldn't be followed due to semantic errors.
///
/// REST API Reference for StartVoiceToneAnalysisTask Operation
public virtual Task StartVoiceToneAnalysisTaskAsync(StartVoiceToneAnalysisTaskRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = StartVoiceToneAnalysisTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = StartVoiceToneAnalysisTaskResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region StopSpeakerSearchTask
///
/// Stops a speaker search task.
///
/// Container for the necessary parameters to execute the StopSpeakerSearchTask service method.
///
/// The response from the StopSpeakerSearchTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
///
/// A well-formed request couldn't be followed due to semantic errors.
///
/// REST API Reference for StopSpeakerSearchTask Operation
public virtual StopSpeakerSearchTaskResponse StopSpeakerSearchTask(StopSpeakerSearchTaskRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = StopSpeakerSearchTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = StopSpeakerSearchTaskResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Stops a speaker search task.
///
/// Container for the necessary parameters to execute the StopSpeakerSearchTask service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the StopSpeakerSearchTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
///
/// A well-formed request couldn't be followed due to semantic errors.
///
/// REST API Reference for StopSpeakerSearchTask Operation
public virtual Task StopSpeakerSearchTaskAsync(StopSpeakerSearchTaskRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = StopSpeakerSearchTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = StopSpeakerSearchTaskResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region StopVoiceToneAnalysisTask
///
/// Stops a voice tone analysis task.
///
/// Container for the necessary parameters to execute the StopVoiceToneAnalysisTask service method.
///
/// The response from the StopVoiceToneAnalysisTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
///
/// A well-formed request couldn't be followed due to semantic errors.
///
/// REST API Reference for StopVoiceToneAnalysisTask Operation
public virtual StopVoiceToneAnalysisTaskResponse StopVoiceToneAnalysisTask(StopVoiceToneAnalysisTaskRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = StopVoiceToneAnalysisTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = StopVoiceToneAnalysisTaskResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Stops a voice tone analysis task.
///
/// Container for the necessary parameters to execute the StopVoiceToneAnalysisTask service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the StopVoiceToneAnalysisTask service method, as returned by ChimeSDKVoice.
///
/// You don't have the permissions needed to run this action.
///
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
///
/// A well-formed request couldn't be followed due to semantic errors.
///
/// REST API Reference for StopVoiceToneAnalysisTask Operation
public virtual Task StopVoiceToneAnalysisTaskAsync(StopVoiceToneAnalysisTaskRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = StopVoiceToneAnalysisTaskRequestMarshaller.Instance;
options.ResponseUnmarshaller = StopVoiceToneAnalysisTaskResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region TagResource
///
/// Adds a tag to the specified resource.
///
/// Container for the necessary parameters to execute the TagResource service method.
///
/// The response from the TagResource service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for TagResource Operation
public virtual TagResourceResponse TagResource(TagResourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = TagResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = TagResourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Adds a tag to the specified resource.
///
/// Container for the necessary parameters to execute the TagResource service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the TagResource service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The request exceeds the resource limit.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for TagResource Operation
public virtual Task TagResourceAsync(TagResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = TagResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = TagResourceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UntagResource
///
/// Removes tags from a resource.
///
/// Container for the necessary parameters to execute the UntagResource service method.
///
/// The response from the UntagResource service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for UntagResource Operation
public virtual UntagResourceResponse UntagResource(UntagResourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UntagResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UntagResourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Removes tags from a resource.
///
/// Container for the necessary parameters to execute the UntagResource service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UntagResource service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for UntagResource Operation
public virtual Task UntagResourceAsync(UntagResourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UntagResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UntagResourceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateGlobalSettings
///
/// Updates global settings for the Amazon Chime SDK Voice Connectors in an AWS account.
///
/// Container for the necessary parameters to execute the UpdateGlobalSettings service method.
///
/// The response from the UpdateGlobalSettings service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for UpdateGlobalSettings Operation
public virtual UpdateGlobalSettingsResponse UpdateGlobalSettings(UpdateGlobalSettingsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateGlobalSettingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateGlobalSettingsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates global settings for the Amazon Chime SDK Voice Connectors in an AWS account.
///
/// Container for the necessary parameters to execute the UpdateGlobalSettings service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateGlobalSettings service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for UpdateGlobalSettings Operation
public virtual Task UpdateGlobalSettingsAsync(UpdateGlobalSettingsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateGlobalSettingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateGlobalSettingsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdatePhoneNumber
///
/// Updates phone number details, such as product type or calling name, for the specified
/// phone number ID. You can update one phone number detail at a time. For example, you
/// can update either the product type or the calling name in one action.
///
///
///
/// For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media Application
/// Dial-In product type.
///
///
///
/// Updates to outbound calling names can take 72 hours to complete. Pending updates to
/// outbound calling names must be complete before you can request another update.
///
///
/// Container for the necessary parameters to execute the UpdatePhoneNumber service method.
///
/// The response from the UpdatePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for UpdatePhoneNumber Operation
public virtual UpdatePhoneNumberResponse UpdatePhoneNumber(UpdatePhoneNumberRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdatePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdatePhoneNumberResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates phone number details, such as product type or calling name, for the specified
/// phone number ID. You can update one phone number detail at a time. For example, you
/// can update either the product type or the calling name in one action.
///
///
///
/// For numbers outside the U.S., you must use the Amazon Chime SDK SIP Media Application
/// Dial-In product type.
///
///
///
/// Updates to outbound calling names can take 72 hours to complete. Pending updates to
/// outbound calling names must be complete before you can request another update.
///
///
/// Container for the necessary parameters to execute the UpdatePhoneNumber service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdatePhoneNumber service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// Multiple instances of the same request were made simultaneously.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The requested resource couldn't be found.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for UpdatePhoneNumber Operation
public virtual Task UpdatePhoneNumberAsync(UpdatePhoneNumberRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdatePhoneNumberRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdatePhoneNumberResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdatePhoneNumberSettings
///
/// Updates the phone number settings for the administrator's AWS account, such as the
/// default outbound calling name. You can update the default outbound calling name once
/// every seven days. Outbound calling names can take up to 72 hours to update.
///
/// Container for the necessary parameters to execute the UpdatePhoneNumberSettings service method.
///
/// The response from the UpdatePhoneNumberSettings service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for UpdatePhoneNumberSettings Operation
public virtual UpdatePhoneNumberSettingsResponse UpdatePhoneNumberSettings(UpdatePhoneNumberSettingsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdatePhoneNumberSettingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdatePhoneNumberSettingsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates the phone number settings for the administrator's AWS account, such as the
/// default outbound calling name. You can update the default outbound calling name once
/// every seven days. Outbound calling names can take up to 72 hours to update.
///
/// Container for the necessary parameters to execute the UpdatePhoneNumberSettings service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdatePhoneNumberSettings service method, as returned by ChimeSDKVoice.
///
/// The input parameters don't match the service's restrictions.
///
///
/// The client is permanently forbidden from making the request.
///
///
/// The service encountered an unexpected error.
///
///
/// The service is currently unavailable.
///
///
/// The number of customer requests exceeds the request rate limit.
///
///
/// The client isn't authorized to request a resource.
///
/// REST API Reference for UpdatePhoneNumberSettings Operation
public virtual Task UpdatePhoneNumberSettingsAsync(UpdatePhoneNumberSettingsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdatePhoneNumberSettingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdatePhoneNumberSettingsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateProxySession
///