68 releases (23 stable)

new 1.24.0 Apr 12, 2024
1.22.0 Mar 29, 2024
1.11.0 Dec 21, 2023
1.4.0 Nov 30, 2023
0.0.0 May 8, 2021

#2435 in Network programming

Download history 5/week @ 2023-12-21 4/week @ 2024-01-11 7/week @ 2024-01-18 6/week @ 2024-01-25 33/week @ 2024-02-08 140/week @ 2024-02-15 254/week @ 2024-02-22 54/week @ 2024-02-29 52/week @ 2024-03-07 199/week @ 2024-03-14 82/week @ 2024-03-21 181/week @ 2024-03-28 102/week @ 2024-04-04

606 downloads per month

Apache-2.0

1.5MB
24K SLoC

aws-sdk-marketplacecatalog

Catalog API actions allow you to manage your entities through list, describe, and update capabilities. An entity can be a product or an offer on AWS Marketplace.

You can automate your entity update process by integrating the AWS Marketplace Catalog API with your AWS Marketplace product build or deployment pipelines. You can also create your own applications on top of the Catalog API to manage your products on AWS Marketplace.

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-marketplacecatalog to your project, add the following to your Cargo.toml file:

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

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

use aws_sdk_marketplacecatalog as marketplacecatalog;

#[::tokio::main]
async fn main() -> Result<(), marketplacecatalog::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_marketplacecatalog::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

~7–21MB
~273K SLoC