41 releases (21 stable)

new 1.22.0 Apr 22, 2024
1.19.0 Mar 26, 2024
1.9.0 Dec 21, 2023
1.3.0 Nov 27, 2023
0.3.0 Mar 30, 2023

#1973 in Network programming

Download history 72/week @ 2023-12-31 13/week @ 2024-01-07 212/week @ 2024-01-14 139/week @ 2024-01-21 14/week @ 2024-02-04 118/week @ 2024-02-11 215/week @ 2024-02-18 171/week @ 2024-02-25 53/week @ 2024-03-03 346/week @ 2024-03-10 103/week @ 2024-03-17 239/week @ 2024-03-24 108/week @ 2024-03-31 243/week @ 2024-04-07 184/week @ 2024-04-14

783 downloads per month

Apache-2.0

1.5MB
23K SLoC

aws-sdk-resourceexplorer2

Amazon Web Services Resource Explorer is a resource search and discovery service. By using Resource Explorer, you can explore your resources using an internet search engine-like experience. Examples of resources include Amazon Relational Database Service (Amazon RDS) instances, Amazon Simple Storage Service (Amazon S3) buckets, or Amazon DynamoDB tables. You can search for your resources using resource metadata like names, tags, and IDs. Resource Explorer can search across all of the Amazon Web Services Regions in your account in which you turn the service on, to simplify your cross-Region workloads.

Resource Explorer scans the resources in each of the Amazon Web Services Regions in your Amazon Web Services account in which you turn on Resource Explorer. Resource Explorer creates and maintains an index in each Region, with the details of that Region's resources.

You can search across all of the indexed Regions in your account by designating one of your Amazon Web Services Regions to contain the aggregator index for the account. When you promote a local index in a Region to become the aggregator index for the account, Resource Explorer automatically replicates the index information from all local indexes in the other Regions to the aggregator index. Therefore, the Region with the aggregator index has a copy of all resource information for all Regions in the account where you turned on Resource Explorer. As a result, views in the aggregator index Region include resources from all of the indexed Regions in your account.

For more information about Amazon Web Services Resource Explorer, including how to enable and configure the service, see the Amazon Web Services Resource Explorer User Guide.

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

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

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

use aws_sdk_resourceexplorer2 as resourceexplorer2;

#[::tokio::main]
async fn main() -> Result<(), resourceexplorer2::Error> {
    let config = aws_config::load_from_env().await;
    let client = aws_sdk_resourceexplorer2::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–21MB
~275K SLoC