112 releases (68 stable)

new 1.69.0 Mar 28, 2025
1.64.0 Feb 24, 2025
1.55.0 Dec 28, 2024
1.51.0 Nov 6, 2024
0.0.0 May 7, 2021

#435 in Video

Download history 972/week @ 2024-12-10 285/week @ 2024-12-17 102/week @ 2024-12-24 370/week @ 2024-12-31 76/week @ 2025-01-07 119/week @ 2025-01-14 220/week @ 2025-01-21 142/week @ 2025-01-28 181/week @ 2025-02-04 146/week @ 2025-02-11 38/week @ 2025-02-18 128/week @ 2025-02-25 182/week @ 2025-03-04 129/week @ 2025-03-11 151/week @ 2025-03-18 249/week @ 2025-03-25

732 downloads per month

Apache-2.0

4.5MB
69K SLoC

aws-sdk-mediaconnect

Welcome to the Elemental MediaConnect API reference.

MediaConnect is a service that lets you ingest live video content into the cloud and distribute it to destinations all over the world, both inside and outside the Amazon Web Services cloud. This API reference provides descriptions, syntax, and usage examples for each of the actions and data types that are supported by MediaConnect.

Use the following links to get started with the MediaConnect API:

  • Actions: An alphabetical list of all MediaConnect API operations.
  • Data types: An alphabetical list of all MediaConnect data types.
  • Common parameters: Parameters that all operations can use.
  • Common errors: Client and server errors that all operations can return.

Getting Started

Examples are available for many services and operations, check out the examples folder in GitHub.

The SDK provides one crate per AWS service. You must add Tokio as a dependency within your Rust project to execute asynchronous code. To add aws-sdk-mediaconnect to your project, add the following to your Cargo.toml file:

[dependencies]
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-mediaconnect = "1.69.0"
tokio = { version = "1", features = ["full"] }

Then in code, a client can be created with the following:

use aws_sdk_mediaconnect as mediaconnect;

#[::tokio::main]
async fn main() -> Result<(), mediaconnect::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_mediaconnect::Client::new(&config);

    // ... make some calls with the client

    Ok(())
}

See the client documentation for information on what calls can be made, and the inputs and outputs for each of those calls.

Using the SDK

Until the SDK is released, we will be adding information about using the SDK to the Developer Guide. Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do.

Getting Help

License

This project is licensed under the Apache-2.0 License.

Dependencies

~8–15MB
~178K SLoC