/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the mediaconnect-2018-11-14.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.MediaConnect.Model;
using Amazon.MediaConnect.Model.Internal.MarshallTransformations;
using Amazon.MediaConnect.Internal;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Runtime.Internal.Auth;
using Amazon.Runtime.Internal.Transform;
namespace Amazon.MediaConnect
{
///
/// Implementation for accessing MediaConnect
///
/// API for AWS Elemental MediaConnect
///
public partial class AmazonMediaConnectClient : AmazonServiceClient, IAmazonMediaConnect
{
private static IServiceMetadata serviceMetadata = new AmazonMediaConnectMetadata();
#region Constructors
///
/// Constructs AmazonMediaConnectClient 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 AmazonMediaConnectClient()
: base(FallbackCredentialsFactory.GetCredentials(), new AmazonMediaConnectConfig()) { }
///
/// Constructs AmazonMediaConnectClient 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 AmazonMediaConnectClient(RegionEndpoint region)
: base(FallbackCredentialsFactory.GetCredentials(), new AmazonMediaConnectConfig{RegionEndpoint = region}) { }
///
/// Constructs AmazonMediaConnectClient 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 AmazonMediaConnectClient Configuration Object
public AmazonMediaConnectClient(AmazonMediaConnectConfig config)
: base(FallbackCredentialsFactory.GetCredentials(config), config){}
///
/// Constructs AmazonMediaConnectClient with AWS Credentials
///
/// AWS Credentials
public AmazonMediaConnectClient(AWSCredentials credentials)
: this(credentials, new AmazonMediaConnectConfig())
{
}
///
/// Constructs AmazonMediaConnectClient with AWS Credentials
///
/// AWS Credentials
/// The region to connect.
public AmazonMediaConnectClient(AWSCredentials credentials, RegionEndpoint region)
: this(credentials, new AmazonMediaConnectConfig{RegionEndpoint = region})
{
}
///
/// Constructs AmazonMediaConnectClient with AWS Credentials and an
/// AmazonMediaConnectClient Configuration object.
///
/// AWS Credentials
/// The AmazonMediaConnectClient Configuration Object
public AmazonMediaConnectClient(AWSCredentials credentials, AmazonMediaConnectConfig clientConfig)
: base(credentials, clientConfig)
{
}
///
/// Constructs AmazonMediaConnectClient with AWS Access Key ID and AWS Secret Key
///
/// AWS Access Key ID
/// AWS Secret Access Key
public AmazonMediaConnectClient(string awsAccessKeyId, string awsSecretAccessKey)
: this(awsAccessKeyId, awsSecretAccessKey, new AmazonMediaConnectConfig())
{
}
///
/// Constructs AmazonMediaConnectClient with AWS Access Key ID and AWS Secret Key
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// The region to connect.
public AmazonMediaConnectClient(string awsAccessKeyId, string awsSecretAccessKey, RegionEndpoint region)
: this(awsAccessKeyId, awsSecretAccessKey, new AmazonMediaConnectConfig() {RegionEndpoint=region})
{
}
///
/// Constructs AmazonMediaConnectClient with AWS Access Key ID, AWS Secret Key and an
/// AmazonMediaConnectClient Configuration object.
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// The AmazonMediaConnectClient Configuration Object
public AmazonMediaConnectClient(string awsAccessKeyId, string awsSecretAccessKey, AmazonMediaConnectConfig clientConfig)
: base(awsAccessKeyId, awsSecretAccessKey, clientConfig)
{
}
///
/// Constructs AmazonMediaConnectClient with AWS Access Key ID and AWS Secret Key
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// AWS Session Token
public AmazonMediaConnectClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken)
: this(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, new AmazonMediaConnectConfig())
{
}
///
/// Constructs AmazonMediaConnectClient 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 AmazonMediaConnectClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, RegionEndpoint region)
: this(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, new AmazonMediaConnectConfig{RegionEndpoint = region})
{
}
///
/// Constructs AmazonMediaConnectClient with AWS Access Key ID, AWS Secret Key and an
/// AmazonMediaConnectClient Configuration object.
///
/// AWS Access Key ID
/// AWS Secret Access Key
/// AWS Session Token
/// The AmazonMediaConnectClient Configuration Object
public AmazonMediaConnectClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonMediaConnectConfig clientConfig)
: base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig)
{
}
#endregion
#if AWS_ASYNC_ENUMERABLES_API
private IMediaConnectPaginatorFactory _paginators;
///
/// Paginators for the service
///
public IMediaConnectPaginatorFactory Paginators
{
get
{
if (this._paginators == null)
{
this._paginators = new MediaConnectPaginatorFactory(this);
}
return this._paginators;
}
}
#endif
#region Overrides
///
/// Creates the signer for the service.
///
protected override AbstractAWSSigner CreateSigner()
{
return new AWS4Signer();
}
///
/// Customizes the runtime pipeline.
///
/// Runtime pipeline for the current client.
protected override void CustomizeRuntimePipeline(RuntimePipeline pipeline)
{
pipeline.RemoveHandler();
pipeline.AddHandlerAfter(new AmazonMediaConnectEndpointResolver());
}
///
/// 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 AddBridgeOutputs
internal virtual AddBridgeOutputsResponse AddBridgeOutputs(AddBridgeOutputsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddBridgeOutputsRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddBridgeOutputsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Adds outputs to an existing bridge.
///
/// Container for the necessary parameters to execute the AddBridgeOutputs service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the AddBridgeOutputs service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for AddBridgeOutputs Operation
public virtual Task AddBridgeOutputsAsync(AddBridgeOutputsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddBridgeOutputsRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddBridgeOutputsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region AddBridgeSources
internal virtual AddBridgeSourcesResponse AddBridgeSources(AddBridgeSourcesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddBridgeSourcesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddBridgeSourcesResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Adds sources to an existing bridge.
///
/// Container for the necessary parameters to execute the AddBridgeSources service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the AddBridgeSources service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for AddBridgeSources Operation
public virtual Task AddBridgeSourcesAsync(AddBridgeSourcesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddBridgeSourcesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddBridgeSourcesResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region AddFlowMediaStreams
internal virtual AddFlowMediaStreamsResponse AddFlowMediaStreams(AddFlowMediaStreamsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddFlowMediaStreamsRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddFlowMediaStreamsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Adds media streams to an existing flow. After you add a media stream to a flow, you
/// can associate it with a source and/or an output that uses the ST 2110 JPEG XS or CDI
/// protocol.
///
/// Container for the necessary parameters to execute the AddFlowMediaStreams service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the AddFlowMediaStreams service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for AddFlowMediaStreams Operation
public virtual Task AddFlowMediaStreamsAsync(AddFlowMediaStreamsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddFlowMediaStreamsRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddFlowMediaStreamsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region AddFlowOutputs
internal virtual AddFlowOutputsResponse AddFlowOutputs(AddFlowOutputsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddFlowOutputsRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddFlowOutputsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Adds outputs to an existing flow. You can create up to 50 outputs per flow.
///
/// Container for the necessary parameters to execute the AddFlowOutputs service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the AddFlowOutputs service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for AddFlowOutputs Operation
public virtual Task AddFlowOutputsAsync(AddFlowOutputsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddFlowOutputsRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddFlowOutputsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region AddFlowSources
internal virtual AddFlowSourcesResponse AddFlowSources(AddFlowSourcesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddFlowSourcesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddFlowSourcesResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Adds Sources to flow
///
/// Container for the necessary parameters to execute the AddFlowSources service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the AddFlowSources service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for AddFlowSources Operation
public virtual Task AddFlowSourcesAsync(AddFlowSourcesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddFlowSourcesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddFlowSourcesResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region AddFlowVpcInterfaces
internal virtual AddFlowVpcInterfacesResponse AddFlowVpcInterfaces(AddFlowVpcInterfacesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddFlowVpcInterfacesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddFlowVpcInterfacesResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Adds VPC interfaces to flow
///
/// Container for the necessary parameters to execute the AddFlowVpcInterfaces service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the AddFlowVpcInterfaces service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for AddFlowVpcInterfaces Operation
public virtual Task AddFlowVpcInterfacesAsync(AddFlowVpcInterfacesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddFlowVpcInterfacesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddFlowVpcInterfacesResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateBridge
internal virtual CreateBridgeResponse CreateBridge(CreateBridgeRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateBridgeRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateBridgeResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates a new bridge. The request must include one source.
///
/// Container for the necessary parameters to execute the CreateBridge service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateBridge service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for CreateBridge Operation
public virtual Task CreateBridgeAsync(CreateBridgeRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateBridgeRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateBridgeResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateFlow
internal virtual CreateFlowResponse CreateFlow(CreateFlowRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateFlowResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates a new flow. The request must include one source. The request optionally can
/// include outputs (up to 50) and entitlements (up to 50).
///
/// Container for the necessary parameters to execute the CreateFlow service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateFlow service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for CreateFlow Operation
public virtual Task CreateFlowAsync(CreateFlowRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateFlowResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region CreateGateway
internal virtual CreateGatewayResponse CreateGateway(CreateGatewayRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateGatewayRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateGatewayResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Creates a new gateway. The request must include at least one network (up to 4).
///
/// Container for the necessary parameters to execute the CreateGateway service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the CreateGateway service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for CreateGateway Operation
public virtual Task CreateGatewayAsync(CreateGatewayRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = CreateGatewayRequestMarshaller.Instance;
options.ResponseUnmarshaller = CreateGatewayResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteBridge
internal virtual DeleteBridgeResponse DeleteBridge(DeleteBridgeRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteBridgeRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteBridgeResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes a bridge. Before you can delete a bridge, you must stop the bridge.
///
/// Container for the necessary parameters to execute the DeleteBridge service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteBridge service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DeleteBridge Operation
public virtual Task DeleteBridgeAsync(DeleteBridgeRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteBridgeRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteBridgeResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteFlow
internal virtual DeleteFlowResponse DeleteFlow(DeleteFlowRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteFlowResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes a flow. Before you can delete a flow, you must stop the flow.
///
/// Container for the necessary parameters to execute the DeleteFlow service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteFlow service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DeleteFlow Operation
public virtual Task DeleteFlowAsync(DeleteFlowRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteFlowResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeleteGateway
internal virtual DeleteGatewayResponse DeleteGateway(DeleteGatewayRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteGatewayRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteGatewayResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes a gateway. Before you can delete a gateway, you must deregister its instances
/// and delete its bridges.
///
/// Container for the necessary parameters to execute the DeleteGateway service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeleteGateway service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DeleteGateway Operation
public virtual Task DeleteGatewayAsync(DeleteGatewayRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeleteGatewayRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeleteGatewayResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DeregisterGatewayInstance
internal virtual DeregisterGatewayInstanceResponse DeregisterGatewayInstance(DeregisterGatewayInstanceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DeregisterGatewayInstanceRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeregisterGatewayInstanceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deregisters an instance. Before you deregister an instance, all bridges running on
/// the instance must be stopped. If you want to deregister an instance without stopping
/// the bridges, you must use the --force option.
///
/// Container for the necessary parameters to execute the DeregisterGatewayInstance service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DeregisterGatewayInstance service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DeregisterGatewayInstance Operation
public virtual Task DeregisterGatewayInstanceAsync(DeregisterGatewayInstanceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DeregisterGatewayInstanceRequestMarshaller.Instance;
options.ResponseUnmarshaller = DeregisterGatewayInstanceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DescribeBridge
internal virtual DescribeBridgeResponse DescribeBridge(DescribeBridgeRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeBridgeRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeBridgeResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays the details of a bridge.
///
/// Container for the necessary parameters to execute the DescribeBridge service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DescribeBridge service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DescribeBridge Operation
public virtual Task DescribeBridgeAsync(DescribeBridgeRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeBridgeRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeBridgeResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DescribeFlow
internal virtual DescribeFlowResponse DescribeFlow(DescribeFlowRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeFlowResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays the details of a flow. The response includes the flow ARN, name, and Availability
/// Zone, as well as details about the source, outputs, and entitlements.
///
/// Container for the necessary parameters to execute the DescribeFlow service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DescribeFlow service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DescribeFlow Operation
public virtual Task DescribeFlowAsync(DescribeFlowRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeFlowResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DescribeGateway
internal virtual DescribeGatewayResponse DescribeGateway(DescribeGatewayRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeGatewayRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeGatewayResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays the details of a gateway. The response includes the gateway ARN, name, and
/// CIDR blocks, as well as details about the networks.
///
/// Container for the necessary parameters to execute the DescribeGateway service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DescribeGateway service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DescribeGateway Operation
public virtual Task DescribeGatewayAsync(DescribeGatewayRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeGatewayRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeGatewayResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DescribeGatewayInstance
internal virtual DescribeGatewayInstanceResponse DescribeGatewayInstance(DescribeGatewayInstanceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeGatewayInstanceRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeGatewayInstanceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays the details of an instance.
///
/// Container for the necessary parameters to execute the DescribeGatewayInstance service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DescribeGatewayInstance service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DescribeGatewayInstance Operation
public virtual Task DescribeGatewayInstanceAsync(DescribeGatewayInstanceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeGatewayInstanceRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeGatewayInstanceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DescribeOffering
internal virtual DescribeOfferingResponse DescribeOffering(DescribeOfferingRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeOfferingRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeOfferingResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays the details of an offering. The response includes the offering description,
/// duration, outbound bandwidth, price, and Amazon Resource Name (ARN).
///
/// Container for the necessary parameters to execute the DescribeOffering service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DescribeOffering service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DescribeOffering Operation
public virtual Task DescribeOfferingAsync(DescribeOfferingRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeOfferingRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeOfferingResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region DescribeReservation
internal virtual DescribeReservationResponse DescribeReservation(DescribeReservationRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeReservationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeReservationResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays the details of a reservation. The response includes the reservation name,
/// state, start date and time, and the details of the offering that make up the rest
/// of the reservation (such as price, duration, and outbound bandwidth).
///
/// Container for the necessary parameters to execute the DescribeReservation service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the DescribeReservation service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for DescribeReservation Operation
public virtual Task DescribeReservationAsync(DescribeReservationRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = DescribeReservationRequestMarshaller.Instance;
options.ResponseUnmarshaller = DescribeReservationResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region GrantFlowEntitlements
internal virtual GrantFlowEntitlementsResponse GrantFlowEntitlements(GrantFlowEntitlementsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = GrantFlowEntitlementsRequestMarshaller.Instance;
options.ResponseUnmarshaller = GrantFlowEntitlementsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Grants entitlements to an existing flow.
///
/// Container for the necessary parameters to execute the GrantFlowEntitlements service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the GrantFlowEntitlements service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for GrantFlowEntitlements Operation
public virtual Task GrantFlowEntitlementsAsync(GrantFlowEntitlementsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = GrantFlowEntitlementsRequestMarshaller.Instance;
options.ResponseUnmarshaller = GrantFlowEntitlementsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListBridges
internal virtual ListBridgesResponse ListBridges(ListBridgesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListBridgesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListBridgesResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays a list of bridges that are associated with this account and an optionally
/// specified Arn. This request returns a paginated result.
///
/// Container for the necessary parameters to execute the ListBridges service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListBridges service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for ListBridges Operation
public virtual Task ListBridgesAsync(ListBridgesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListBridgesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListBridgesResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListEntitlements
internal virtual ListEntitlementsResponse ListEntitlements(ListEntitlementsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListEntitlementsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListEntitlementsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays a list of all entitlements that have been granted to this account. This request
/// returns 20 results per page.
///
/// Container for the necessary parameters to execute the ListEntitlements service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListEntitlements service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for ListEntitlements Operation
public virtual Task ListEntitlementsAsync(ListEntitlementsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListEntitlementsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListEntitlementsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListFlows
internal virtual ListFlowsResponse ListFlows(ListFlowsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListFlowsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListFlowsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays a list of flows that are associated with this account. This request returns
/// a paginated result.
///
/// Container for the necessary parameters to execute the ListFlows service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListFlows service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for ListFlows Operation
public virtual Task ListFlowsAsync(ListFlowsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListFlowsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListFlowsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListGatewayInstances
internal virtual ListGatewayInstancesResponse ListGatewayInstances(ListGatewayInstancesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListGatewayInstancesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListGatewayInstancesResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays a list of instances associated with the AWS account. This request returns
/// a paginated result. You can use the filterArn property to display only the instances
/// associated with the selected Gateway Amazon Resource Name (ARN).
///
/// Container for the necessary parameters to execute the ListGatewayInstances service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListGatewayInstances service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for ListGatewayInstances Operation
public virtual Task ListGatewayInstancesAsync(ListGatewayInstancesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListGatewayInstancesRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListGatewayInstancesResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListGateways
internal virtual ListGatewaysResponse ListGateways(ListGatewaysRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListGatewaysRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListGatewaysResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays a list of gateways that are associated with this account. This request returns
/// a paginated result.
///
/// Container for the necessary parameters to execute the ListGateways service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListGateways service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for ListGateways Operation
public virtual Task ListGatewaysAsync(ListGatewaysRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListGatewaysRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListGatewaysResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListOfferings
internal virtual ListOfferingsResponse ListOfferings(ListOfferingsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListOfferingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListOfferingsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays a list of all offerings that are available to this account in the current
/// AWS Region. If you have an active reservation (which means you've purchased an offering
/// that has already started and hasn't expired yet), your account isn't eligible for
/// other offerings.
///
/// Container for the necessary parameters to execute the ListOfferings service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListOfferings service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for ListOfferings Operation
public virtual Task ListOfferingsAsync(ListOfferingsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListOfferingsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListOfferingsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListReservations
internal virtual ListReservationsResponse ListReservations(ListReservationsRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListReservationsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListReservationsResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Displays a list of all reservations that have been purchased by this account in the
/// current AWS Region. This list includes all reservations in all states (such as active
/// and expired).
///
/// Container for the necessary parameters to execute the ListReservations service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the ListReservations service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for ListReservations Operation
public virtual Task ListReservationsAsync(ListReservationsRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = ListReservationsRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListReservationsResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region ListTagsForResource
internal virtual ListTagsForResourceResponse ListTagsForResource(ListTagsForResourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = ListTagsForResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = ListTagsForResourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// List all tags on an AWS Elemental MediaConnect 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 MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// 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 PurchaseOffering
internal virtual PurchaseOfferingResponse PurchaseOffering(PurchaseOfferingRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = PurchaseOfferingRequestMarshaller.Instance;
options.ResponseUnmarshaller = PurchaseOfferingResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Submits a request to purchase an offering. If you already have an active reservation,
/// you can't purchase another offering.
///
/// Container for the necessary parameters to execute the PurchaseOffering service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the PurchaseOffering service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for PurchaseOffering Operation
public virtual Task PurchaseOfferingAsync(PurchaseOfferingRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = PurchaseOfferingRequestMarshaller.Instance;
options.ResponseUnmarshaller = PurchaseOfferingResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region RemoveBridgeOutput
internal virtual RemoveBridgeOutputResponse RemoveBridgeOutput(RemoveBridgeOutputRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveBridgeOutputRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveBridgeOutputResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Removes an output from a bridge.
///
/// Container for the necessary parameters to execute the RemoveBridgeOutput service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the RemoveBridgeOutput service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for RemoveBridgeOutput Operation
public virtual Task RemoveBridgeOutputAsync(RemoveBridgeOutputRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveBridgeOutputRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveBridgeOutputResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region RemoveBridgeSource
internal virtual RemoveBridgeSourceResponse RemoveBridgeSource(RemoveBridgeSourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveBridgeSourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveBridgeSourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Removes a source from a bridge.
///
/// Container for the necessary parameters to execute the RemoveBridgeSource service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the RemoveBridgeSource service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for RemoveBridgeSource Operation
public virtual Task RemoveBridgeSourceAsync(RemoveBridgeSourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveBridgeSourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveBridgeSourceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region RemoveFlowMediaStream
internal virtual RemoveFlowMediaStreamResponse RemoveFlowMediaStream(RemoveFlowMediaStreamRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveFlowMediaStreamRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveFlowMediaStreamResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Removes a media stream from a flow. This action is only available if the media stream
/// is not associated with a source or output.
///
/// Container for the necessary parameters to execute the RemoveFlowMediaStream service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the RemoveFlowMediaStream service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for RemoveFlowMediaStream Operation
public virtual Task RemoveFlowMediaStreamAsync(RemoveFlowMediaStreamRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveFlowMediaStreamRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveFlowMediaStreamResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region RemoveFlowOutput
internal virtual RemoveFlowOutputResponse RemoveFlowOutput(RemoveFlowOutputRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveFlowOutputRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveFlowOutputResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Removes an output from an existing flow. This request can be made only on an output
/// that does not have an entitlement associated with it. If the output has an entitlement,
/// you must revoke the entitlement instead. When an entitlement is revoked from a flow,
/// the service automatically removes the associated output.
///
/// Container for the necessary parameters to execute the RemoveFlowOutput service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the RemoveFlowOutput service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for RemoveFlowOutput Operation
public virtual Task RemoveFlowOutputAsync(RemoveFlowOutputRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveFlowOutputRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveFlowOutputResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region RemoveFlowSource
internal virtual RemoveFlowSourceResponse RemoveFlowSource(RemoveFlowSourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveFlowSourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveFlowSourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Removes a source from an existing flow. This request can be made only if there is
/// more than one source on the flow.
///
/// Container for the necessary parameters to execute the RemoveFlowSource service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the RemoveFlowSource service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for RemoveFlowSource Operation
public virtual Task RemoveFlowSourceAsync(RemoveFlowSourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveFlowSourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveFlowSourceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region RemoveFlowVpcInterface
internal virtual RemoveFlowVpcInterfaceResponse RemoveFlowVpcInterface(RemoveFlowVpcInterfaceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveFlowVpcInterfaceRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveFlowVpcInterfaceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Removes a VPC Interface from an existing flow. This request can be made only on a
/// VPC interface that does not have a Source or Output associated with it. If the VPC
/// interface is referenced by a Source or Output, you must first delete or update the
/// Source or Output to no longer reference the VPC interface.
///
/// Container for the necessary parameters to execute the RemoveFlowVpcInterface service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the RemoveFlowVpcInterface service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for RemoveFlowVpcInterface Operation
public virtual Task RemoveFlowVpcInterfaceAsync(RemoveFlowVpcInterfaceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = RemoveFlowVpcInterfaceRequestMarshaller.Instance;
options.ResponseUnmarshaller = RemoveFlowVpcInterfaceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region RevokeFlowEntitlement
internal virtual RevokeFlowEntitlementResponse RevokeFlowEntitlement(RevokeFlowEntitlementRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = RevokeFlowEntitlementRequestMarshaller.Instance;
options.ResponseUnmarshaller = RevokeFlowEntitlementResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Revokes an entitlement from a flow. Once an entitlement is revoked, the content becomes
/// unavailable to the subscriber and the associated output is removed.
///
/// Container for the necessary parameters to execute the RevokeFlowEntitlement service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the RevokeFlowEntitlement service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for RevokeFlowEntitlement Operation
public virtual Task RevokeFlowEntitlementAsync(RevokeFlowEntitlementRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = RevokeFlowEntitlementRequestMarshaller.Instance;
options.ResponseUnmarshaller = RevokeFlowEntitlementResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region StartFlow
internal virtual StartFlowResponse StartFlow(StartFlowRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = StartFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = StartFlowResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Starts a flow.
///
/// Container for the necessary parameters to execute the StartFlow service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the StartFlow service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for StartFlow Operation
public virtual Task StartFlowAsync(StartFlowRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = StartFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = StartFlowResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region StopFlow
internal virtual StopFlowResponse StopFlow(StopFlowRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = StopFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = StopFlowResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Stops a flow.
///
/// Container for the necessary parameters to execute the StopFlow service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the StopFlow service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for StopFlow Operation
public virtual Task StopFlowAsync(StopFlowRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = StopFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = StopFlowResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region TagResource
internal virtual TagResourceResponse TagResource(TagResourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = TagResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = TagResourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Associates the specified tags to a resource with the specified resourceArn. If existing
/// tags on a resource are not specified in the request parameters, they are not changed.
/// When a resource is deleted, the tags associated with that resource are deleted as
/// well.
///
/// 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 MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// 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
internal virtual UntagResourceResponse UntagResource(UntagResourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UntagResourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UntagResourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Deletes specified 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 MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// 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 UpdateBridge
internal virtual UpdateBridgeResponse UpdateBridge(UpdateBridgeRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateBridgeRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateBridgeResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates the bridge
///
/// Container for the necessary parameters to execute the UpdateBridge service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateBridge service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateBridge Operation
public virtual Task UpdateBridgeAsync(UpdateBridgeRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateBridgeRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateBridgeResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateBridgeOutput
internal virtual UpdateBridgeOutputResponse UpdateBridgeOutput(UpdateBridgeOutputRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateBridgeOutputRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateBridgeOutputResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates an existing bridge output.
///
/// Container for the necessary parameters to execute the UpdateBridgeOutput service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateBridgeOutput service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateBridgeOutput Operation
public virtual Task UpdateBridgeOutputAsync(UpdateBridgeOutputRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateBridgeOutputRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateBridgeOutputResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateBridgeSource
internal virtual UpdateBridgeSourceResponse UpdateBridgeSource(UpdateBridgeSourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateBridgeSourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateBridgeSourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates an existing bridge source.
///
/// Container for the necessary parameters to execute the UpdateBridgeSource service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateBridgeSource service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateBridgeSource Operation
public virtual Task UpdateBridgeSourceAsync(UpdateBridgeSourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateBridgeSourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateBridgeSourceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateBridgeState
internal virtual UpdateBridgeStateResponse UpdateBridgeState(UpdateBridgeStateRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateBridgeStateRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateBridgeStateResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates the bridge state
///
/// Container for the necessary parameters to execute the UpdateBridgeState service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateBridgeState service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateBridgeState Operation
public virtual Task UpdateBridgeStateAsync(UpdateBridgeStateRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateBridgeStateRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateBridgeStateResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateFlow
internal virtual UpdateFlowResponse UpdateFlow(UpdateFlowRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates flow
///
/// Container for the necessary parameters to execute the UpdateFlow service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateFlow service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateFlow Operation
public virtual Task UpdateFlowAsync(UpdateFlowRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateFlowEntitlement
internal virtual UpdateFlowEntitlementResponse UpdateFlowEntitlement(UpdateFlowEntitlementRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowEntitlementRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowEntitlementResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// You can change an entitlement's description, subscribers, and encryption. If you change
/// the subscribers, the service will remove the outputs that are are used by the subscribers
/// that are removed.
///
/// Container for the necessary parameters to execute the UpdateFlowEntitlement service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateFlowEntitlement service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateFlowEntitlement Operation
public virtual Task UpdateFlowEntitlementAsync(UpdateFlowEntitlementRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowEntitlementRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowEntitlementResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateFlowMediaStream
internal virtual UpdateFlowMediaStreamResponse UpdateFlowMediaStream(UpdateFlowMediaStreamRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowMediaStreamRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowMediaStreamResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates an existing media stream.
///
/// Container for the necessary parameters to execute the UpdateFlowMediaStream service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateFlowMediaStream service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateFlowMediaStream Operation
public virtual Task UpdateFlowMediaStreamAsync(UpdateFlowMediaStreamRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowMediaStreamRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowMediaStreamResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateFlowOutput
internal virtual UpdateFlowOutputResponse UpdateFlowOutput(UpdateFlowOutputRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowOutputRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowOutputResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates an existing flow output.
///
/// Container for the necessary parameters to execute the UpdateFlowOutput service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateFlowOutput service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateFlowOutput Operation
public virtual Task UpdateFlowOutputAsync(UpdateFlowOutputRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowOutputRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowOutputResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateFlowSource
internal virtual UpdateFlowSourceResponse UpdateFlowSource(UpdateFlowSourceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowSourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowSourceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates the source of a flow.
///
/// Container for the necessary parameters to execute the UpdateFlowSource service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateFlowSource service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateFlowSource Operation
public virtual Task UpdateFlowSourceAsync(UpdateFlowSourceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateFlowSourceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateFlowSourceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
#region UpdateGatewayInstance
internal virtual UpdateGatewayInstanceResponse UpdateGatewayInstance(UpdateGatewayInstanceRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateGatewayInstanceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateGatewayInstanceResponseUnmarshaller.Instance;
return Invoke(request, options);
}
///
/// Updates the configuration of an existing Gateway Instance.
///
/// Container for the necessary parameters to execute the UpdateGatewayInstance service method.
///
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
///
///
/// The response from the UpdateGatewayInstance service method, as returned by MediaConnect.
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
///
/// Exception raised by AWS Elemental MediaConnect. See the error message and documentation
/// for the operation for more information on the cause of this exception.
///
/// REST API Reference for UpdateGatewayInstance Operation
public virtual Task UpdateGatewayInstanceAsync(UpdateGatewayInstanceRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = UpdateGatewayInstanceRequestMarshaller.Instance;
options.ResponseUnmarshaller = UpdateGatewayInstanceResponseUnmarshaller.Instance;
return InvokeAsync(request, options, cancellationToken);
}
#endregion
}
}