diff --git a/.smithyrs-githash b/.smithyrs-githash index b0b6f4339a47..e1816482d59c 100644 --- a/.smithyrs-githash +++ b/.smithyrs-githash @@ -1 +1 @@ -75056c6a780529692e1b44e18402352205f9e1f6 \ No newline at end of file +622712058f0f7fcfd7383dc12289e64afba68e39 \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 2dc93b0f2382..8ad48632cbc7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,6 +41,7 @@ members = [ "examples/sending-presigned-requests", "examples/ses", "examples/setting-timeouts", + "examples/sitewise", "examples/snowball", "examples/sns", "examples/sqs", diff --git a/examples/sitewise/Cargo.toml b/examples/sitewise/Cargo.toml new file mode 100644 index 000000000000..255379b25f2a --- /dev/null +++ b/examples/sitewise/Cargo.toml @@ -0,0 +1,31 @@ +# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT. +[package] +name = "sitewise-code-examples" +version = "0.1.0" +authors = ["Lawrence Xiao "] +edition = "2021" +publish = false +[dependencies.aws-config] +path = "../../sdk/aws-config" +version = "0.9.0" + +[dependencies.aws-sdk-iotsitewise] +path = "../../sdk/iotsitewise" +version = "0.9.0" + +[dependencies.aws-smithy-types-convert] +features = ["convert-chrono"] +path = "../../sdk/aws-smithy-types-convert" +version = "0.39.0" + +[dependencies.tokio] +version = "1" +features = ["full"] + +[dependencies.structopt] +version = "0.3" +default-features = false + +[dependencies.tracing-subscriber] +version = "0.3.5" +features = ["env-filter"] diff --git a/examples/sitewise/README.md b/examples/sitewise/README.md new file mode 100644 index 000000000000..b51b05aa98c4 --- /dev/null +++ b/examples/sitewise/README.md @@ -0,0 +1,60 @@ +# AWS SDK for Rust code examples for AWS IoT SiteWise + +## Purpose + +These examples demonstrate how to perform several AWS IoT SiteWise operations using the developer preview version of the AWS SDK for Rust. + +AWS IoT SiteWise is a managed service that simplifies collecting, organizing, and analyzing industrial equipment data. + +## Code examples + +- [List assets](src/bin/list-assets.rs) (ListAssets) + +## ⚠ Important + +- Running this code might result in charges to your AWS account. +- We recommend that you grant this code least privilege, + or at most the minimum permissions required to perform the task. + For more information, see + [Grant least privilege](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege) + in the AWS Identity and Access Management User Guide. +- This code has not been tested in all AWS Regions. + Some AWS services are available only in specific + [Regions](https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services). + +## Running the code examples + +### Prerequisites + +You must have an AWS account with your default credentials and AWS Region configured as described in [https://github.com/awslabs/aws-sdk-rust](https://github.com/awslabs/aws-sdk-rust). + +### list-assets.rs + +This example lists AWS IoT SiteWise assets in the Region. + +`cargo run --bin list-assets -- -f FILTER [-a ASSET-MODEL-ID] [-r REGION] [-v]` + +- _FILTER_ is the type of filter. It must be one of the following: + - ALL - The list includes all assets for a given asset model ID. The _ASSET-MODEL-ID_ parameter is required if you filter by ALL. + - TOP_LEVEL - The list includes only top-level assets in the asset hierarchy tree. +- _ASSET-MODEL-ID_ The ID of the asset model by which to filter the list of assets. This parameter is required if you choose ALL for _FILTER_. +- _REGION_ The Region in which the client is created. + If not supplied, uses the value of the __AWS_REGION__ environment variable. + If the environment variable is not set, defaults to __us-west-2__. +- __-v__ displays additional information. + +If the example succeeds, it displays the Amazon Resource Name (ARN) of the new role. + +## Resources + +- [AWS SDK for Rust repo](https://github.com/awslabs/aws-sdk-rust) +- - [AWS SDK for Rust API Reference for AWS IoT SiteWise](https://docs.rs/aws-sdk-iotsitewise) +- [AWS SDK for Rust API Reference Guide](https://awslabs.github.io/aws-sdk-rust/aws_sdk_config/index.html) + +## Contributing + +To propose a new code example to the AWS documentation team, +see [CONTRIBUTING.md](https://github.com/awsdocs/aws-doc-sdk-examples/blob/master/CONTRIBUTING.md). +The team prefers to create code examples that show broad scenarios rather than individual API calls. + +Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: Apache-2.0 diff --git a/examples/sitewise/src/bin/list-assets.rs b/examples/sitewise/src/bin/list-assets.rs new file mode 100644 index 000000000000..3de883b8b383 --- /dev/null +++ b/examples/sitewise/src/bin/list-assets.rs @@ -0,0 +1,135 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +use aws_config::meta::region::RegionProviderChain; +use aws_sdk_iotsitewise::{model::ListAssetsFilter, Client, Error, Region, PKG_VERSION}; +use aws_smithy_types_convert::date_time::DateTimeExt; +use structopt::StructOpt; + +#[derive(Debug, StructOpt)] +struct Opt { + /// The AWS Region. + #[structopt(short, long)] + region: Option, + + /// The asset model id. + #[structopt(short, long)] + asset_model_id: Option, + + /// The filter. + #[structopt(short, long)] + filter: String, + + /// Whether to display additional information. + #[structopt(short, long)] + verbose: bool, +} + +// List the assets under AWS IoT SiteWise. +// snippet-start:[sitewise.rust.list-assets] +async fn list_assets( + client: &Client, + filter: ListAssetsFilter, + asset_model_id: Option, +) -> Result<(), Error> { + let resp = client + .list_assets() + .filter(filter) + .set_asset_model_id(asset_model_id) + .send() + .await?; + + println!("Assets:"); + + for asset in resp.asset_summaries.unwrap() { + println!(" ID: {}", asset.id.as_deref().unwrap_or_default()); + println!(" ARN: {}", asset.arn.as_deref().unwrap_or_default()); + println!(" Name: {}", asset.name.as_deref().unwrap_or_default()); + println!( + " Asset Model ID: {}", + asset.asset_model_id.as_deref().unwrap_or_default() + ); + println!( + " Creation Date: {}", + asset.creation_date.unwrap().to_chrono_utc() + ); + println!( + " Last Update Date: {}", + asset.last_update_date.unwrap().to_chrono_utc() + ); + println!( + " Current Status: {}", + asset.status.unwrap().state.unwrap().as_str() + ); + + println!(" Assets Hierarchies:"); + + for hierarchy in asset.hierarchies.unwrap() { + println!( + " Hierarchy ID: {}", + hierarchy.id.as_deref().unwrap_or_default() + ); + println!( + " Hierarchy Name: {}", + hierarchy.name.as_deref().unwrap_or_default() + ); + } + + println!(); + } + + println!(); + + Ok(()) +} +// snippet-end:[sitewise.rust.list-assets] + +/// Lists the ID, Amazon Resource Name (ARN), name, asset_model_id, creation_date, last_update_data, +/// status, and hierarchies of your AWS IoT SiteWise assets in the Region. +/// +/// # Arguments +/// +/// * `-f FILTER` - The type of filter. +/// Must be one of the following: +/// - ALL - The list includes all assets for a given asset model ID. The assetModelId parameter +/// is required if you filter by ALL. +/// - TOP_LEVEL - The list includes only top-level assets in the asset hierarchy tree. +/// * `[-a ASSET-MODEL-ID]` - The ID of the asset model by which to filter the list of assets. +/// This parameter is required if you choose ALL for filter. +/// * `[-r REGION]` - The Region in which the client is created. +/// If not supplied, uses the value of the **AWS_REGION** environment variable. +/// If the environment variable is not set, defaults to **us-west-2**. +/// * `[-v]` - Whether to display information. +#[tokio::main] +async fn main() -> Result<(), Error> { + tracing_subscriber::fmt::init(); + let Opt { + region, + asset_model_id, + filter, + verbose, + } = Opt::from_args(); + + let region_provider = RegionProviderChain::first_try(region.map(Region::new)) + .or_default_provider() + .or_else(Region::new("us-west-2")); + println!(); + + if verbose { + println!("IoT client version: {}", PKG_VERSION); + println!( + "Region: {}", + region_provider.region().await.unwrap().as_ref() + ); + println!("Filter: {}", &filter); + println!(); + } + + let shared_config = aws_config::from_env().region(region_provider).load().await; + let client = Client::new(&shared_config); + let filter: ListAssetsFilter = ListAssetsFilter::from(filter.as_str()); + + list_assets(&client, filter, asset_model_id).await +} diff --git a/sdk/accessanalyzer/README.md b/sdk/accessanalyzer/README.md index ec1badfc1a57..c909ed57709d 100644 --- a/sdk/accessanalyzer/README.md +++ b/sdk/accessanalyzer/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/account/README.md b/sdk/account/README.md index d175e49d6b6c..34c950a1faf6 100644 --- a/sdk/account/README.md +++ b/sdk/account/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/acm/README.md b/sdk/acm/README.md index 6434d942c254..b2493dc6bff9 100644 --- a/sdk/acm/README.md +++ b/sdk/acm/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/acmpca/README.md b/sdk/acmpca/README.md index 45d496bab363..2abb32856363 100644 --- a/sdk/acmpca/README.md +++ b/sdk/acmpca/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/alexaforbusiness/README.md b/sdk/alexaforbusiness/README.md index 2c7d3fba4eb5..7dabdecdef36 100644 --- a/sdk/alexaforbusiness/README.md +++ b/sdk/alexaforbusiness/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/amp/README.md b/sdk/amp/README.md index 5cdbb834a250..81a6965d3eae 100644 --- a/sdk/amp/README.md +++ b/sdk/amp/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/amplify/README.md b/sdk/amplify/README.md index dea306658992..939296c897d3 100644 --- a/sdk/amplify/README.md +++ b/sdk/amplify/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/amplifybackend/README.md b/sdk/amplifybackend/README.md index eb191eb164f2..833f0fb344bb 100644 --- a/sdk/amplifybackend/README.md +++ b/sdk/amplifybackend/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/amplifyuibuilder/README.md b/sdk/amplifyuibuilder/README.md index d05c622d792f..e357c5ec3f7b 100644 --- a/sdk/amplifyuibuilder/README.md +++ b/sdk/amplifyuibuilder/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/apigateway/README.md b/sdk/apigateway/README.md index e7633f7b0e18..b00217a63d3e 100644 --- a/sdk/apigateway/README.md +++ b/sdk/apigateway/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/apigatewaymanagement/README.md b/sdk/apigatewaymanagement/README.md index c363cc263f7e..7faf3cc3bd7e 100644 --- a/sdk/apigatewaymanagement/README.md +++ b/sdk/apigatewaymanagement/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/apigatewayv2/README.md b/sdk/apigatewayv2/README.md index df1c7284c92b..34e73f498bf0 100644 --- a/sdk/apigatewayv2/README.md +++ b/sdk/apigatewayv2/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/appconfig/README.md b/sdk/appconfig/README.md index 1a38bf4fab8f..f9278568fb79 100644 --- a/sdk/appconfig/README.md +++ b/sdk/appconfig/README.md @@ -36,7 +36,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/appconfigdata/README.md b/sdk/appconfigdata/README.md index 6324e5d8ef6d..30754544b2e9 100644 --- a/sdk/appconfigdata/README.md +++ b/sdk/appconfigdata/README.md @@ -39,7 +39,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/appflow/README.md b/sdk/appflow/README.md index 56f5db14b814..70ffc743e30e 100644 --- a/sdk/appflow/README.md +++ b/sdk/appflow/README.md @@ -36,7 +36,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/appintegrations/README.md b/sdk/appintegrations/README.md index 439102c7cb04..ca38249154ef 100644 --- a/sdk/appintegrations/README.md +++ b/sdk/appintegrations/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/applicationautoscaling/README.md b/sdk/applicationautoscaling/README.md index 6951f5c5cf90..d5234e7f54c1 100644 --- a/sdk/applicationautoscaling/README.md +++ b/sdk/applicationautoscaling/README.md @@ -47,7 +47,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/applicationcostprofiler/README.md b/sdk/applicationcostprofiler/README.md index 164ee99f51e7..67f823d5f8f8 100644 --- a/sdk/applicationcostprofiler/README.md +++ b/sdk/applicationcostprofiler/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/applicationdiscovery/README.md b/sdk/applicationdiscovery/README.md index bb73ffbe10eb..d4074c1bd6d5 100644 --- a/sdk/applicationdiscovery/README.md +++ b/sdk/applicationdiscovery/README.md @@ -47,7 +47,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/applicationinsights/README.md b/sdk/applicationinsights/README.md index 09eb1ab21700..60a5933e4b8d 100644 --- a/sdk/applicationinsights/README.md +++ b/sdk/applicationinsights/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/appmesh/README.md b/sdk/appmesh/README.md index 7e20063b5bde..f58247362a9d 100644 --- a/sdk/appmesh/README.md +++ b/sdk/appmesh/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/apprunner/README.md b/sdk/apprunner/README.md index 5c4fadad979f..cf1a577fb8f3 100644 --- a/sdk/apprunner/README.md +++ b/sdk/apprunner/README.md @@ -34,7 +34,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/appstream/README.md b/sdk/appstream/README.md index 3695eea68f7e..8b2b8af1811e 100644 --- a/sdk/appstream/README.md +++ b/sdk/appstream/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/appsync/README.md b/sdk/appsync/README.md index f04f3fffc617..36c88e9f7c64 100644 --- a/sdk/appsync/README.md +++ b/sdk/appsync/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/athena/README.md b/sdk/athena/README.md index 199673ea9b7a..75103d0c1f8c 100644 --- a/sdk/athena/README.md +++ b/sdk/athena/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/auditmanager/README.md b/sdk/auditmanager/README.md index e63bd49014f5..f7a596ab93e4 100644 --- a/sdk/auditmanager/README.md +++ b/sdk/auditmanager/README.md @@ -36,7 +36,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/autoscaling/README.md b/sdk/autoscaling/README.md index b3ad81aa156d..a8eb67b1648b 100644 --- a/sdk/autoscaling/README.md +++ b/sdk/autoscaling/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/autoscalingplans/README.md b/sdk/autoscalingplans/README.md index 3fae0cc23471..6a0072edf43e 100644 --- a/sdk/autoscalingplans/README.md +++ b/sdk/autoscalingplans/README.md @@ -36,7 +36,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/aws-config/README.md b/sdk/aws-config/README.md index d14eff55843f..dde5c865afc6 100644 --- a/sdk/aws-config/README.md +++ b/sdk/aws-config/README.md @@ -46,7 +46,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK -Until the SDK is released, we will be adding information about using the SDK to the [Guide]. Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. +Until the SDK is released, we will be adding information about using the SDK to the [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/backup/README.md b/sdk/backup/README.md index a12ee766d215..26d0438ddd85 100644 --- a/sdk/backup/README.md +++ b/sdk/backup/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/backupgateway/README.md b/sdk/backupgateway/README.md index 09b4c8d827d7..6268c9a9ed1e 100644 --- a/sdk/backupgateway/README.md +++ b/sdk/backupgateway/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/batch/README.md b/sdk/batch/README.md index 696bccbe9e49..1290dbb5bab5 100644 --- a/sdk/batch/README.md +++ b/sdk/batch/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/braket/README.md b/sdk/braket/README.md index 68792476c87b..864656c0a52c 100644 --- a/sdk/braket/README.md +++ b/sdk/braket/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/budgets/README.md b/sdk/budgets/README.md index f49a49ac5e5d..289bca0ab368 100644 --- a/sdk/budgets/README.md +++ b/sdk/budgets/README.md @@ -43,7 +43,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/chime/README.md b/sdk/chime/README.md index ee239bd7a959..cb45d15a95d6 100644 --- a/sdk/chime/README.md +++ b/sdk/chime/README.md @@ -41,7 +41,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/chimesdkidentity/README.md b/sdk/chimesdkidentity/README.md index d2bb672a2570..6ed7802dc9fa 100644 --- a/sdk/chimesdkidentity/README.md +++ b/sdk/chimesdkidentity/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/chimesdkmeetings/README.md b/sdk/chimesdkmeetings/README.md index 305efbe984aa..8fbd561f2d2c 100644 --- a/sdk/chimesdkmeetings/README.md +++ b/sdk/chimesdkmeetings/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/chimesdkmessaging/README.md b/sdk/chimesdkmessaging/README.md index 615013615697..346d3a13b88d 100644 --- a/sdk/chimesdkmessaging/README.md +++ b/sdk/chimesdkmessaging/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloud9/README.md b/sdk/cloud9/README.md index 96bc766ee276..aa5e0b50e550 100644 --- a/sdk/cloud9/README.md +++ b/sdk/cloud9/README.md @@ -41,7 +41,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudcontrol/README.md b/sdk/cloudcontrol/README.md index 4afa7616123c..ab4d82fc3ef5 100644 --- a/sdk/cloudcontrol/README.md +++ b/sdk/cloudcontrol/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/clouddirectory/README.md b/sdk/clouddirectory/README.md index 22a5c623a7aa..139bfe959b75 100644 --- a/sdk/clouddirectory/README.md +++ b/sdk/clouddirectory/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudformation/README.md b/sdk/cloudformation/README.md index fa54121be5db..73eb6b07a92a 100644 --- a/sdk/cloudformation/README.md +++ b/sdk/cloudformation/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudfront/README.md b/sdk/cloudfront/README.md index 70811d65da34..46441d206d8e 100644 --- a/sdk/cloudfront/README.md +++ b/sdk/cloudfront/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudhsm/README.md b/sdk/cloudhsm/README.md index 86d9bb60be92..31560c641fa9 100644 --- a/sdk/cloudhsm/README.md +++ b/sdk/cloudhsm/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudhsmv2/README.md b/sdk/cloudhsmv2/README.md index c28cf7ef87c2..6530e417a5d0 100644 --- a/sdk/cloudhsmv2/README.md +++ b/sdk/cloudhsmv2/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudsearch/README.md b/sdk/cloudsearch/README.md index 07bfbbdcf4c4..f3dfc2d22ac6 100644 --- a/sdk/cloudsearch/README.md +++ b/sdk/cloudsearch/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudsearchdomain/README.md b/sdk/cloudsearchdomain/README.md index 83ee80acb5c0..3bffdae0273c 100644 --- a/sdk/cloudsearchdomain/README.md +++ b/sdk/cloudsearchdomain/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudtrail/README.md b/sdk/cloudtrail/README.md index c235345c216e..8a70af52d0e1 100644 --- a/sdk/cloudtrail/README.md +++ b/sdk/cloudtrail/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudwatch/README.md b/sdk/cloudwatch/README.md index 7289e5788c30..789aef9473e1 100644 --- a/sdk/cloudwatch/README.md +++ b/sdk/cloudwatch/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudwatchevents/README.md b/sdk/cloudwatchevents/README.md index 76baf57b2824..e99d89527c6f 100644 --- a/sdk/cloudwatchevents/README.md +++ b/sdk/cloudwatchevents/README.md @@ -29,7 +29,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cloudwatchlogs/README.md b/sdk/cloudwatchlogs/README.md index 38d5e14a9bee..52f7c024d111 100644 --- a/sdk/cloudwatchlogs/README.md +++ b/sdk/cloudwatchlogs/README.md @@ -29,7 +29,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codeartifact/README.md b/sdk/codeartifact/README.md index f1b8d32f75a3..41e872d7a205 100644 --- a/sdk/codeartifact/README.md +++ b/sdk/codeartifact/README.md @@ -76,7 +76,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codebuild/README.md b/sdk/codebuild/README.md index 71d86785b2c9..4c955fa7bf51 100644 --- a/sdk/codebuild/README.md +++ b/sdk/codebuild/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codecommit/README.md b/sdk/codecommit/README.md index e07f5a654f7f..f63fb11a6c33 100644 --- a/sdk/codecommit/README.md +++ b/sdk/codecommit/README.md @@ -125,7 +125,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codedeploy/README.md b/sdk/codedeploy/README.md index 302aa51fc7a6..2dd2a7ef13ad 100644 --- a/sdk/codedeploy/README.md +++ b/sdk/codedeploy/README.md @@ -45,7 +45,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codeguruprofiler/README.md b/sdk/codeguruprofiler/README.md index 8e10412a2b43..7ead5f40b509 100644 --- a/sdk/codeguruprofiler/README.md +++ b/sdk/codeguruprofiler/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codegurureviewer/README.md b/sdk/codegurureviewer/README.md index 18d0f2d7339e..86958d3a53d8 100644 --- a/sdk/codegurureviewer/README.md +++ b/sdk/codegurureviewer/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codepipeline/README.md b/sdk/codepipeline/README.md index 4e6cec117c62..16096de96c63 100644 --- a/sdk/codepipeline/README.md +++ b/sdk/codepipeline/README.md @@ -81,7 +81,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codestar/README.md b/sdk/codestar/README.md index 609d7e0c2924..44586a29aab4 100644 --- a/sdk/codestar/README.md +++ b/sdk/codestar/README.md @@ -49,7 +49,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codestarconnections/README.md b/sdk/codestarconnections/README.md index 19ae63855e7c..a29a750930f0 100644 --- a/sdk/codestarconnections/README.md +++ b/sdk/codestarconnections/README.md @@ -49,7 +49,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/codestarnotifications/README.md b/sdk/codestarnotifications/README.md index fc8f400fffe0..d0bca33e148d 100644 --- a/sdk/codestarnotifications/README.md +++ b/sdk/codestarnotifications/README.md @@ -47,7 +47,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cognitoidentity/README.md b/sdk/cognitoidentity/README.md index 37b6dd282ad8..9d105197f384 100644 --- a/sdk/cognitoidentity/README.md +++ b/sdk/cognitoidentity/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cognitoidentityprovider/README.md b/sdk/cognitoidentityprovider/README.md index b8ec83404c58..73518e2fc1d3 100644 --- a/sdk/cognitoidentityprovider/README.md +++ b/sdk/cognitoidentityprovider/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/cognitosync/README.md b/sdk/cognitosync/README.md index 5cb8458279c8..32575e69d7ba 100644 --- a/sdk/cognitosync/README.md +++ b/sdk/cognitosync/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/comprehend/README.md b/sdk/comprehend/README.md index 9688defcad93..6deaaa3ecf10 100644 --- a/sdk/comprehend/README.md +++ b/sdk/comprehend/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/comprehendmedical/README.md b/sdk/comprehendmedical/README.md index f6055c1abe55..1835e955dec2 100644 --- a/sdk/comprehendmedical/README.md +++ b/sdk/comprehendmedical/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/computeoptimizer/README.md b/sdk/computeoptimizer/README.md index 6e0e3420949b..8b27390ddb7b 100644 --- a/sdk/computeoptimizer/README.md +++ b/sdk/computeoptimizer/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/config/README.md b/sdk/config/README.md index 430d279300aa..16a18139f744 100644 --- a/sdk/config/README.md +++ b/sdk/config/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/connect/README.md b/sdk/connect/README.md index 0bd76e351892..a2aa0afeb654 100644 --- a/sdk/connect/README.md +++ b/sdk/connect/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/connectcontactlens/README.md b/sdk/connectcontactlens/README.md index bbb20b15a51b..f22e56e032b6 100644 --- a/sdk/connectcontactlens/README.md +++ b/sdk/connectcontactlens/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/connectparticipant/README.md b/sdk/connectparticipant/README.md index 41e2b5e77b8a..60f0c0b9a440 100644 --- a/sdk/connectparticipant/README.md +++ b/sdk/connectparticipant/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/costandusagereport/README.md b/sdk/costandusagereport/README.md index 2875c435d094..db7bfbcffcaf 100644 --- a/sdk/costandusagereport/README.md +++ b/sdk/costandusagereport/README.md @@ -31,7 +31,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/costexplorer/README.md b/sdk/costexplorer/README.md index 36a29ff73a25..d9c2304cb9e0 100644 --- a/sdk/costexplorer/README.md +++ b/sdk/costexplorer/README.md @@ -31,7 +31,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/customerprofiles/README.md b/sdk/customerprofiles/README.md index 3d54ec35de54..cc0fb02044a7 100644 --- a/sdk/customerprofiles/README.md +++ b/sdk/customerprofiles/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/databasemigration/README.md b/sdk/databasemigration/README.md index 358d57a7733b..969a77932a09 100644 --- a/sdk/databasemigration/README.md +++ b/sdk/databasemigration/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/databrew/README.md b/sdk/databrew/README.md index 4febaf8212ae..09eda2be4aec 100644 --- a/sdk/databrew/README.md +++ b/sdk/databrew/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/dataexchange/README.md b/sdk/dataexchange/README.md index 7dc23e37fa59..b2cd03a6b976 100644 --- a/sdk/dataexchange/README.md +++ b/sdk/dataexchange/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/datapipeline/README.md b/sdk/datapipeline/README.md index 831d83f5a094..edd9f309f3bf 100644 --- a/sdk/datapipeline/README.md +++ b/sdk/datapipeline/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/datasync/README.md b/sdk/datasync/README.md index 94ab99d5a6e2..a910663a86eb 100644 --- a/sdk/datasync/README.md +++ b/sdk/datasync/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/dax/README.md b/sdk/dax/README.md index a43707ad5cf7..791812e54792 100644 --- a/sdk/dax/README.md +++ b/sdk/dax/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/detective/README.md b/sdk/detective/README.md index 2838593acd6f..c9d2dd3798e0 100644 --- a/sdk/detective/README.md +++ b/sdk/detective/README.md @@ -53,7 +53,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/devicefarm/README.md b/sdk/devicefarm/README.md index f2b521f15d8e..d1db544da5e1 100644 --- a/sdk/devicefarm/README.md +++ b/sdk/devicefarm/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/devopsguru/README.md b/sdk/devopsguru/README.md index 89e3a87815a6..f8eb5830196c 100644 --- a/sdk/devopsguru/README.md +++ b/sdk/devopsguru/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/directconnect/README.md b/sdk/directconnect/README.md index eabf76810afb..50356f260a2f 100644 --- a/sdk/directconnect/README.md +++ b/sdk/directconnect/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/directory/README.md b/sdk/directory/README.md index aeaf94ec228b..414cafb25b27 100644 --- a/sdk/directory/README.md +++ b/sdk/directory/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/dlm/README.md b/sdk/dlm/README.md index 4a36ebb9d6f4..bb4e6621fe79 100644 --- a/sdk/dlm/README.md +++ b/sdk/dlm/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/docdb/README.md b/sdk/docdb/README.md index f89c7b943c36..3beb529f6a62 100644 --- a/sdk/docdb/README.md +++ b/sdk/docdb/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/drs/README.md b/sdk/drs/README.md index 41bc671b29bb..dfa06bbf7f1d 100644 --- a/sdk/drs/README.md +++ b/sdk/drs/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/dynamodb/README.md b/sdk/dynamodb/README.md index 2d42254ae06a..f1bbb97949ac 100644 --- a/sdk/dynamodb/README.md +++ b/sdk/dynamodb/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/dynamodbstreams/README.md b/sdk/dynamodbstreams/README.md index a6a8f8429f1f..8d2e9ea830ac 100644 --- a/sdk/dynamodbstreams/README.md +++ b/sdk/dynamodbstreams/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ebs/README.md b/sdk/ebs/README.md index 5d1561b1920e..33212a329954 100644 --- a/sdk/ebs/README.md +++ b/sdk/ebs/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ec2/README.md b/sdk/ec2/README.md index 06275c7b4e17..280a11b2150c 100644 --- a/sdk/ec2/README.md +++ b/sdk/ec2/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ec2instanceconnect/README.md b/sdk/ec2instanceconnect/README.md index 8bd4e2fd8219..ec8cda555011 100644 --- a/sdk/ec2instanceconnect/README.md +++ b/sdk/ec2instanceconnect/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ecr/README.md b/sdk/ecr/README.md index 0154c1f28cc0..727341ddc4c7 100644 --- a/sdk/ecr/README.md +++ b/sdk/ecr/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ecrpublic/README.md b/sdk/ecrpublic/README.md index 4e196e50013e..69cf6aec1f97 100644 --- a/sdk/ecrpublic/README.md +++ b/sdk/ecrpublic/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ecs/README.md b/sdk/ecs/README.md index 8de5108d798e..cfcb4299fa5c 100644 --- a/sdk/ecs/README.md +++ b/sdk/ecs/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/efs/README.md b/sdk/efs/README.md index 6018f2acc552..e7649f80e615 100644 --- a/sdk/efs/README.md +++ b/sdk/efs/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/eks/README.md b/sdk/eks/README.md index ced4da9a6fa6..ea089f3767cc 100644 --- a/sdk/eks/README.md +++ b/sdk/eks/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/elasticache/README.md b/sdk/elasticache/README.md index 7b0d1e7fe704..60154792d4c7 100644 --- a/sdk/elasticache/README.md +++ b/sdk/elasticache/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/elasticbeanstalk/README.md b/sdk/elasticbeanstalk/README.md index 122c085f49f8..f329a88e3853 100644 --- a/sdk/elasticbeanstalk/README.md +++ b/sdk/elasticbeanstalk/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/elasticinference/README.md b/sdk/elasticinference/README.md index 29292d5f2150..8e6e512a4b3f 100644 --- a/sdk/elasticinference/README.md +++ b/sdk/elasticinference/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/elasticloadbalancing/README.md b/sdk/elasticloadbalancing/README.md index d80d8f7fab69..e6b880cf62df 100644 --- a/sdk/elasticloadbalancing/README.md +++ b/sdk/elasticloadbalancing/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/elasticloadbalancingv2/README.md b/sdk/elasticloadbalancingv2/README.md index 8c8d7a54c771..a4a452132a9c 100644 --- a/sdk/elasticloadbalancingv2/README.md +++ b/sdk/elasticloadbalancingv2/README.md @@ -33,7 +33,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/elasticsearch/README.md b/sdk/elasticsearch/README.md index 1ce2b711fd9e..ad509ff2cb4c 100644 --- a/sdk/elasticsearch/README.md +++ b/sdk/elasticsearch/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/elastictranscoder/README.md b/sdk/elastictranscoder/README.md index d3eb49bab320..0c8ccc524ae6 100644 --- a/sdk/elastictranscoder/README.md +++ b/sdk/elastictranscoder/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/emr/README.md b/sdk/emr/README.md index a205adc27ec1..c44339b70c6b 100644 --- a/sdk/emr/README.md +++ b/sdk/emr/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/emrcontainers/README.md b/sdk/emrcontainers/README.md index 37a0a43eb768..b4f95ec028b6 100644 --- a/sdk/emrcontainers/README.md +++ b/sdk/emrcontainers/README.md @@ -29,7 +29,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/eventbridge/README.md b/sdk/eventbridge/README.md index 9ce5a02b28b5..18a34b328c0a 100644 --- a/sdk/eventbridge/README.md +++ b/sdk/eventbridge/README.md @@ -29,7 +29,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/evidently/README.md b/sdk/evidently/README.md index 0daf375a5e87..e9a02e94c0f8 100644 --- a/sdk/evidently/README.md +++ b/sdk/evidently/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/finspace/README.md b/sdk/finspace/README.md index eb3e6d84aa95..c97227068a15 100644 --- a/sdk/finspace/README.md +++ b/sdk/finspace/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/finspacedata/README.md b/sdk/finspacedata/README.md index 7341f0960979..9cc03983b9a1 100644 --- a/sdk/finspacedata/README.md +++ b/sdk/finspacedata/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/firehose/README.md b/sdk/firehose/README.md index 35e165ef553f..1e8ecc126a7e 100644 --- a/sdk/firehose/README.md +++ b/sdk/firehose/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/fis/README.md b/sdk/fis/README.md index a0c65912db5d..cb486d6345db 100644 --- a/sdk/fis/README.md +++ b/sdk/fis/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/fms/README.md b/sdk/fms/README.md index 88249d457ed8..e3aa4de38961 100644 --- a/sdk/fms/README.md +++ b/sdk/fms/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/forecast/README.md b/sdk/forecast/README.md index 85f619b33583..2b447d265be7 100644 --- a/sdk/forecast/README.md +++ b/sdk/forecast/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/forecastquery/README.md b/sdk/forecastquery/README.md index 94f83dd0c5bc..7f6b3e7fdc7f 100644 --- a/sdk/forecastquery/README.md +++ b/sdk/forecastquery/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/frauddetector/README.md b/sdk/frauddetector/README.md index 72a8556129ba..fec60fc301ae 100644 --- a/sdk/frauddetector/README.md +++ b/sdk/frauddetector/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/fsx/README.md b/sdk/fsx/README.md index 0d9ef5eb351d..dfe749fda887 100644 --- a/sdk/fsx/README.md +++ b/sdk/fsx/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/gamelift/README.md b/sdk/gamelift/README.md index f8cddee279cb..815c592740fd 100644 --- a/sdk/gamelift/README.md +++ b/sdk/gamelift/README.md @@ -38,7 +38,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/glacier/README.md b/sdk/glacier/README.md index ad0118ea86cd..987d9401e634 100644 --- a/sdk/glacier/README.md +++ b/sdk/glacier/README.md @@ -34,7 +34,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/globalaccelerator/README.md b/sdk/globalaccelerator/README.md index bedb518104d4..1c1305e3b6a2 100644 --- a/sdk/globalaccelerator/README.md +++ b/sdk/globalaccelerator/README.md @@ -70,7 +70,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/glue/README.md b/sdk/glue/README.md index 18f91fa3e882..5df89060cf5e 100644 --- a/sdk/glue/README.md +++ b/sdk/glue/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/grafana/README.md b/sdk/grafana/README.md index 7a34e3f01030..ef30dc7113bb 100644 --- a/sdk/grafana/README.md +++ b/sdk/grafana/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/greengrass/README.md b/sdk/greengrass/README.md index c33aba3d8884..e909ef66b1de 100644 --- a/sdk/greengrass/README.md +++ b/sdk/greengrass/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/greengrassv2/README.md b/sdk/greengrassv2/README.md index ba2a64883acf..4534bd55e980 100644 --- a/sdk/greengrassv2/README.md +++ b/sdk/greengrassv2/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/groundstation/README.md b/sdk/groundstation/README.md index 5d63bd27bc5a..4a86a4c6bcdd 100644 --- a/sdk/groundstation/README.md +++ b/sdk/groundstation/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/guardduty/README.md b/sdk/guardduty/README.md index 5d62f8228ff9..9623d1d5e15c 100644 --- a/sdk/guardduty/README.md +++ b/sdk/guardduty/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/health/README.md b/sdk/health/README.md index 6eda7b57b595..b951282526bc 100644 --- a/sdk/health/README.md +++ b/sdk/health/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/healthlake/README.md b/sdk/healthlake/README.md index 3ef4bea21db5..fa3f71ccd089 100644 --- a/sdk/healthlake/README.md +++ b/sdk/healthlake/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/honeycode/README.md b/sdk/honeycode/README.md index 9a9e2fe3cdc0..c0cc27633b3c 100644 --- a/sdk/honeycode/README.md +++ b/sdk/honeycode/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iam/README.md b/sdk/iam/README.md index bb1613d25a2c..211bebab8205 100644 --- a/sdk/iam/README.md +++ b/sdk/iam/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/identitystore/README.md b/sdk/identitystore/README.md index de8c8c309288..cf5d3e42fa5f 100644 --- a/sdk/identitystore/README.md +++ b/sdk/identitystore/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/imagebuilder/README.md b/sdk/imagebuilder/README.md index b984bf3c9a3d..d350042cfa7a 100644 --- a/sdk/imagebuilder/README.md +++ b/sdk/imagebuilder/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/inspector/README.md b/sdk/inspector/README.md index e1eae30cdc3a..95f49c873643 100644 --- a/sdk/inspector/README.md +++ b/sdk/inspector/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/inspector2/README.md b/sdk/inspector2/README.md index fd4390b706d6..bb08fa54dadd 100644 --- a/sdk/inspector2/README.md +++ b/sdk/inspector2/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iot/README.md b/sdk/iot/README.md index 9147d71087fc..f34f2415b195 100644 --- a/sdk/iot/README.md +++ b/sdk/iot/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iot1clickdevices/README.md b/sdk/iot1clickdevices/README.md index 26eed68319a9..c122457e1f36 100644 --- a/sdk/iot1clickdevices/README.md +++ b/sdk/iot1clickdevices/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iot1clickprojects/README.md b/sdk/iot1clickprojects/README.md index 1fd4a6784ef6..322b84b9d1e3 100644 --- a/sdk/iot1clickprojects/README.md +++ b/sdk/iot1clickprojects/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotanalytics/README.md b/sdk/iotanalytics/README.md index 0251c71cde4d..83c821811146 100644 --- a/sdk/iotanalytics/README.md +++ b/sdk/iotanalytics/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotdataplane/README.md b/sdk/iotdataplane/README.md index fe3a055d7638..397502215996 100644 --- a/sdk/iotdataplane/README.md +++ b/sdk/iotdataplane/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotdeviceadvisor/README.md b/sdk/iotdeviceadvisor/README.md index bf30652aceb9..129263b3d53a 100644 --- a/sdk/iotdeviceadvisor/README.md +++ b/sdk/iotdeviceadvisor/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotevents/README.md b/sdk/iotevents/README.md index 700ccfdda714..2baff4971b3e 100644 --- a/sdk/iotevents/README.md +++ b/sdk/iotevents/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ioteventsdata/README.md b/sdk/ioteventsdata/README.md index ffb4b67d1574..bf6f39e0c9db 100644 --- a/sdk/ioteventsdata/README.md +++ b/sdk/ioteventsdata/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotfleethub/README.md b/sdk/iotfleethub/README.md index 88b626e010d6..4b03e5e448c9 100644 --- a/sdk/iotfleethub/README.md +++ b/sdk/iotfleethub/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotjobsdataplane/README.md b/sdk/iotjobsdataplane/README.md index 92ff3368f1c7..cdb87ba856aa 100644 --- a/sdk/iotjobsdataplane/README.md +++ b/sdk/iotjobsdataplane/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotsecuretunneling/README.md b/sdk/iotsecuretunneling/README.md index 73b8c9f94bab..a23614df011f 100644 --- a/sdk/iotsecuretunneling/README.md +++ b/sdk/iotsecuretunneling/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotsitewise/README.md b/sdk/iotsitewise/README.md index ba6232fb0322..8494c82708f4 100644 --- a/sdk/iotsitewise/README.md +++ b/sdk/iotsitewise/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotthingsgraph/README.md b/sdk/iotthingsgraph/README.md index dc4e88525209..5df7ebbad72f 100644 --- a/sdk/iotthingsgraph/README.md +++ b/sdk/iotthingsgraph/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iottwinmaker/README.md b/sdk/iottwinmaker/README.md index 8f65925c72c7..86a39664e479 100644 --- a/sdk/iottwinmaker/README.md +++ b/sdk/iottwinmaker/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/iotwireless/README.md b/sdk/iotwireless/README.md index 8feed5e03947..f18f929a771c 100644 --- a/sdk/iotwireless/README.md +++ b/sdk/iotwireless/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ivs/README.md b/sdk/ivs/README.md index ef09c13dba20..5e3626b70b23 100644 --- a/sdk/ivs/README.md +++ b/sdk/ivs/README.md @@ -113,7 +113,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kafka/README.md b/sdk/kafka/README.md index 8dc52532bd22..db9e724d5db3 100644 --- a/sdk/kafka/README.md +++ b/sdk/kafka/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kafkaconnect/README.md b/sdk/kafkaconnect/README.md index 1677ecd43aa9..6eeead178bbe 100644 --- a/sdk/kafkaconnect/README.md +++ b/sdk/kafkaconnect/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kendra/README.md b/sdk/kendra/README.md index c5f2cab90f3e..9e53c4396422 100644 --- a/sdk/kendra/README.md +++ b/sdk/kendra/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/keyspaces/README.md b/sdk/keyspaces/README.md index 454d5c21cdeb..fcbfd099bf82 100644 --- a/sdk/keyspaces/README.md +++ b/sdk/keyspaces/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kinesis/README.md b/sdk/kinesis/README.md index 8a9296a977b6..5865ccc8ec03 100644 --- a/sdk/kinesis/README.md +++ b/sdk/kinesis/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kinesisanalytics/README.md b/sdk/kinesisanalytics/README.md index 33827aad1f9c..2b0a429cdb56 100644 --- a/sdk/kinesisanalytics/README.md +++ b/sdk/kinesisanalytics/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kinesisanalyticsv2/README.md b/sdk/kinesisanalyticsv2/README.md index d3056232804d..7f732b7df6d9 100644 --- a/sdk/kinesisanalyticsv2/README.md +++ b/sdk/kinesisanalyticsv2/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kinesisvideo/README.md b/sdk/kinesisvideo/README.md index fc03106593c3..f4afe36487c9 100644 --- a/sdk/kinesisvideo/README.md +++ b/sdk/kinesisvideo/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kinesisvideoarchivedmedia/README.md b/sdk/kinesisvideoarchivedmedia/README.md index 1e321e6c6be1..7e8266136fc9 100644 --- a/sdk/kinesisvideoarchivedmedia/README.md +++ b/sdk/kinesisvideoarchivedmedia/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kinesisvideomedia/README.md b/sdk/kinesisvideomedia/README.md index 89249f99bfd7..70b6b81c81a7 100644 --- a/sdk/kinesisvideomedia/README.md +++ b/sdk/kinesisvideomedia/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kinesisvideosignaling/README.md b/sdk/kinesisvideosignaling/README.md index fe9ddb171648..e9e3b33f6fd4 100644 --- a/sdk/kinesisvideosignaling/README.md +++ b/sdk/kinesisvideosignaling/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/kms/README.md b/sdk/kms/README.md index 412486fd36c9..368b899aea42 100644 --- a/sdk/kms/README.md +++ b/sdk/kms/README.md @@ -53,7 +53,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lakeformation/README.md b/sdk/lakeformation/README.md index 949e94531274..64bfa170537b 100644 --- a/sdk/lakeformation/README.md +++ b/sdk/lakeformation/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lambda/README.md b/sdk/lambda/README.md index 5a2f53008860..6421358a468f 100644 --- a/sdk/lambda/README.md +++ b/sdk/lambda/README.md @@ -49,7 +49,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lexmodelbuilding/README.md b/sdk/lexmodelbuilding/README.md index 473730c354eb..4b0b5e7a3666 100644 --- a/sdk/lexmodelbuilding/README.md +++ b/sdk/lexmodelbuilding/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lexmodelsv2/README.md b/sdk/lexmodelsv2/README.md index 6a297eeb290f..12ed6b99dbff 100644 --- a/sdk/lexmodelsv2/README.md +++ b/sdk/lexmodelsv2/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lexruntime/README.md b/sdk/lexruntime/README.md index 97fc9043507f..12fa09f458f3 100644 --- a/sdk/lexruntime/README.md +++ b/sdk/lexruntime/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lexruntimev2/README.md b/sdk/lexruntimev2/README.md index 88c9c72c28e2..f828a5dad416 100644 --- a/sdk/lexruntimev2/README.md +++ b/sdk/lexruntimev2/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/licensemanager/README.md b/sdk/licensemanager/README.md index 917fde55706d..2fa3937ac4ea 100644 --- a/sdk/licensemanager/README.md +++ b/sdk/licensemanager/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lightsail/README.md b/sdk/lightsail/README.md index 6fbb85673d69..1b321fd35c25 100644 --- a/sdk/lightsail/README.md +++ b/sdk/lightsail/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/location/README.md b/sdk/location/README.md index acb7a1734547..1cc2f4ad4324 100644 --- a/sdk/location/README.md +++ b/sdk/location/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lookoutequipment/README.md b/sdk/lookoutequipment/README.md index d92d5aa9245d..a2a711066ea0 100644 --- a/sdk/lookoutequipment/README.md +++ b/sdk/lookoutequipment/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lookoutmetrics/README.md b/sdk/lookoutmetrics/README.md index 0936ad3ebfd8..e81162101833 100644 --- a/sdk/lookoutmetrics/README.md +++ b/sdk/lookoutmetrics/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/lookoutvision/README.md b/sdk/lookoutvision/README.md index 2239db4c9502..bcc679fa0ae1 100644 --- a/sdk/lookoutvision/README.md +++ b/sdk/lookoutvision/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/machinelearning/README.md b/sdk/machinelearning/README.md index e6c5d04df5ca..eb5001bada38 100644 --- a/sdk/machinelearning/README.md +++ b/sdk/machinelearning/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/macie/README.md b/sdk/macie/README.md index 9e356cb6e60d..0afdc47a3cd0 100644 --- a/sdk/macie/README.md +++ b/sdk/macie/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/macie2/README.md b/sdk/macie2/README.md index 61fbfbb3ac7f..bc8e121962e9 100644 --- a/sdk/macie2/README.md +++ b/sdk/macie2/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/managedblockchain/README.md b/sdk/managedblockchain/README.md index 05c56dcc8b9f..892cf028a96f 100644 --- a/sdk/managedblockchain/README.md +++ b/sdk/managedblockchain/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/marketplacecatalog/README.md b/sdk/marketplacecatalog/README.md index ebe11ebeafea..c0d16636e7dd 100644 --- a/sdk/marketplacecatalog/README.md +++ b/sdk/marketplacecatalog/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/marketplacecommerceanalytics/README.md b/sdk/marketplacecommerceanalytics/README.md index 65871d36b15e..5b0bfa5bee5b 100644 --- a/sdk/marketplacecommerceanalytics/README.md +++ b/sdk/marketplacecommerceanalytics/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/marketplaceentitlement/README.md b/sdk/marketplaceentitlement/README.md index 598c4a0662e4..3e5f277b71ab 100644 --- a/sdk/marketplaceentitlement/README.md +++ b/sdk/marketplaceentitlement/README.md @@ -29,7 +29,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/marketplacemetering/README.md b/sdk/marketplacemetering/README.md index a0a6aa73efaf..62f3f75c06a0 100644 --- a/sdk/marketplacemetering/README.md +++ b/sdk/marketplacemetering/README.md @@ -40,7 +40,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mediaconnect/README.md b/sdk/mediaconnect/README.md index dbb2f7ebe1ef..98d3cd47298c 100644 --- a/sdk/mediaconnect/README.md +++ b/sdk/mediaconnect/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mediaconvert/README.md b/sdk/mediaconvert/README.md index d9408013cec5..c94c420cd548 100644 --- a/sdk/mediaconvert/README.md +++ b/sdk/mediaconvert/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/medialive/README.md b/sdk/medialive/README.md index 936a989b7c17..11f2e1dbcb25 100644 --- a/sdk/medialive/README.md +++ b/sdk/medialive/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mediapackage/README.md b/sdk/mediapackage/README.md index de4ee8c1bde8..997e65cfdd0b 100644 --- a/sdk/mediapackage/README.md +++ b/sdk/mediapackage/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mediapackagevod/README.md b/sdk/mediapackagevod/README.md index 6fbd22aac003..956b98ac70b5 100644 --- a/sdk/mediapackagevod/README.md +++ b/sdk/mediapackagevod/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mediastore/README.md b/sdk/mediastore/README.md index 9bb87be95603..03b7f5095b6e 100644 --- a/sdk/mediastore/README.md +++ b/sdk/mediastore/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mediastoredata/README.md b/sdk/mediastoredata/README.md index 812fe6c1de1a..32e947396987 100644 --- a/sdk/mediastoredata/README.md +++ b/sdk/mediastoredata/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mediatailor/README.md b/sdk/mediatailor/README.md index fcafb8b895a4..3b47ed3ad95f 100644 --- a/sdk/mediatailor/README.md +++ b/sdk/mediatailor/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/memorydb/README.md b/sdk/memorydb/README.md index c49e262f8197..ad30d3f9a14d 100644 --- a/sdk/memorydb/README.md +++ b/sdk/memorydb/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mgn/README.md b/sdk/mgn/README.md index f162b33d745b..c7db9234013d 100644 --- a/sdk/mgn/README.md +++ b/sdk/mgn/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/migrationhub/README.md b/sdk/migrationhub/README.md index e9c6d5a34fcf..608932849c41 100644 --- a/sdk/migrationhub/README.md +++ b/sdk/migrationhub/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/migrationhubconfig/README.md b/sdk/migrationhubconfig/README.md index f64fa656bf03..0ca6d43a7f06 100644 --- a/sdk/migrationhubconfig/README.md +++ b/sdk/migrationhubconfig/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/migrationhubrefactorspaces/README.md b/sdk/migrationhubrefactorspaces/README.md index 866a05fc9c2b..dc4625ccb518 100644 --- a/sdk/migrationhubrefactorspaces/README.md +++ b/sdk/migrationhubrefactorspaces/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/migrationhubstrategy/README.md b/sdk/migrationhubstrategy/README.md index 606e3cd7dd3b..4e2ec333f1c8 100644 --- a/sdk/migrationhubstrategy/README.md +++ b/sdk/migrationhubstrategy/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mobile/README.md b/sdk/mobile/README.md index 0200b21e666a..07f1eef041b7 100644 --- a/sdk/mobile/README.md +++ b/sdk/mobile/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mq/README.md b/sdk/mq/README.md index 93b795ae6c6e..34280e3a3509 100644 --- a/sdk/mq/README.md +++ b/sdk/mq/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mturk/README.md b/sdk/mturk/README.md index 53b803990d3d..4d1744d5837b 100644 --- a/sdk/mturk/README.md +++ b/sdk/mturk/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/mwaa/README.md b/sdk/mwaa/README.md index 51cb796e7da7..e6c5b0f923b7 100644 --- a/sdk/mwaa/README.md +++ b/sdk/mwaa/README.md @@ -46,7 +46,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/neptune/README.md b/sdk/neptune/README.md index b3d538577c43..670d189636f2 100644 --- a/sdk/neptune/README.md +++ b/sdk/neptune/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/networkfirewall/README.md b/sdk/networkfirewall/README.md index 65b9ff47fef8..a049bfdb9816 100644 --- a/sdk/networkfirewall/README.md +++ b/sdk/networkfirewall/README.md @@ -45,7 +45,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/networkmanager/README.md b/sdk/networkmanager/README.md index fac4d71465be..f59d13be24ef 100644 --- a/sdk/networkmanager/README.md +++ b/sdk/networkmanager/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/nimble/README.md b/sdk/nimble/README.md index 7a36dc998b35..150a625b15ed 100644 --- a/sdk/nimble/README.md +++ b/sdk/nimble/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/opensearch/README.md b/sdk/opensearch/README.md index 7608721034c3..2da2904faca4 100644 --- a/sdk/opensearch/README.md +++ b/sdk/opensearch/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/opsworks/README.md b/sdk/opsworks/README.md index 762c3e83fa36..c0c41026e192 100644 --- a/sdk/opsworks/README.md +++ b/sdk/opsworks/README.md @@ -60,7 +60,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/opsworkscm/README.md b/sdk/opsworkscm/README.md index 00249d6f55e4..82ac30c7aaeb 100644 --- a/sdk/opsworkscm/README.md +++ b/sdk/opsworkscm/README.md @@ -50,7 +50,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/organizations/README.md b/sdk/organizations/README.md index 6c4a1204a8ae..d966a61c3e6a 100644 --- a/sdk/organizations/README.md +++ b/sdk/organizations/README.md @@ -41,7 +41,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/outposts/README.md b/sdk/outposts/README.md index e08addf5104b..d3e3c50f83e2 100644 --- a/sdk/outposts/README.md +++ b/sdk/outposts/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/panorama/README.md b/sdk/panorama/README.md index b89881f760f2..c18e573bf96d 100644 --- a/sdk/panorama/README.md +++ b/sdk/panorama/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/personalize/README.md b/sdk/personalize/README.md index 11797a00fc01..c880bdb103a8 100644 --- a/sdk/personalize/README.md +++ b/sdk/personalize/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/personalizeevents/README.md b/sdk/personalizeevents/README.md index e75e108e5d72..5c43a24d5776 100644 --- a/sdk/personalizeevents/README.md +++ b/sdk/personalizeevents/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/personalizeruntime/README.md b/sdk/personalizeruntime/README.md index b38b48baa53c..43736620b6a7 100644 --- a/sdk/personalizeruntime/README.md +++ b/sdk/personalizeruntime/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/pi/README.md b/sdk/pi/README.md index 31ef024a6940..a5fe3f856607 100644 --- a/sdk/pi/README.md +++ b/sdk/pi/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/pinpoint/README.md b/sdk/pinpoint/README.md index e535bc0f15d2..1fe26e2744af 100644 --- a/sdk/pinpoint/README.md +++ b/sdk/pinpoint/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/pinpointemail/README.md b/sdk/pinpointemail/README.md index 4da3c484b3b2..cbd21a9ce091 100644 --- a/sdk/pinpointemail/README.md +++ b/sdk/pinpointemail/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/pinpointsmsvoice/README.md b/sdk/pinpointsmsvoice/README.md index f83bb1ebedb9..984d4ccd9f32 100644 --- a/sdk/pinpointsmsvoice/README.md +++ b/sdk/pinpointsmsvoice/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/polly/README.md b/sdk/polly/README.md index 0de8a19bbcf5..1d998e286c81 100644 --- a/sdk/polly/README.md +++ b/sdk/polly/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/pricing/README.md b/sdk/pricing/README.md index d1808deab9de..65478b7dd39d 100644 --- a/sdk/pricing/README.md +++ b/sdk/pricing/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/proton/README.md b/sdk/proton/README.md index 19ad6156ce65..6e1888937290 100644 --- a/sdk/proton/README.md +++ b/sdk/proton/README.md @@ -110,7 +110,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/qldb/README.md b/sdk/qldb/README.md index 72c421aaebe2..a0f9e593e5bf 100644 --- a/sdk/qldb/README.md +++ b/sdk/qldb/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/qldbsession/README.md b/sdk/qldbsession/README.md index 43f728ad3baa..51c0686a2478 100644 --- a/sdk/qldbsession/README.md +++ b/sdk/qldbsession/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/quicksight/README.md b/sdk/quicksight/README.md index e9cbbd271a85..1d1b9b4ad40c 100644 --- a/sdk/quicksight/README.md +++ b/sdk/quicksight/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ram/README.md b/sdk/ram/README.md index 5b86b8c160a2..778829cbd2a4 100644 --- a/sdk/ram/README.md +++ b/sdk/ram/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/rbin/README.md b/sdk/rbin/README.md index 5ff13f676296..512d86c5dab3 100644 --- a/sdk/rbin/README.md +++ b/sdk/rbin/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/rds/README.md b/sdk/rds/README.md index 6cdfbbc73dc2..e04fe3356bb3 100644 --- a/sdk/rds/README.md +++ b/sdk/rds/README.md @@ -38,7 +38,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/rdsdata/README.md b/sdk/rdsdata/README.md index e92d7cc1e56a..ec2a1a7ae2aa 100644 --- a/sdk/rdsdata/README.md +++ b/sdk/rdsdata/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/redshift/README.md b/sdk/redshift/README.md index 22fa2040e8f9..132bcb020551 100644 --- a/sdk/redshift/README.md +++ b/sdk/redshift/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/redshiftdata/README.md b/sdk/redshiftdata/README.md index 8fd91d48d447..f68bea229ff3 100644 --- a/sdk/redshiftdata/README.md +++ b/sdk/redshiftdata/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/rekognition/README.md b/sdk/rekognition/README.md index 428f6f761356..b48e6e9732c8 100644 --- a/sdk/rekognition/README.md +++ b/sdk/rekognition/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/resiliencehub/README.md b/sdk/resiliencehub/README.md index 4da840b5bf3d..e3e09b1ae6c4 100644 --- a/sdk/resiliencehub/README.md +++ b/sdk/resiliencehub/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/resourcegroups/README.md b/sdk/resourcegroups/README.md index a86c31718cf1..108c07e4a751 100644 --- a/sdk/resourcegroups/README.md +++ b/sdk/resourcegroups/README.md @@ -35,7 +35,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/resourcegroupstagging/README.md b/sdk/resourcegroupstagging/README.md index 3be581d6b6da..995a286ae412 100644 --- a/sdk/resourcegroupstagging/README.md +++ b/sdk/resourcegroupstagging/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/robomaker/README.md b/sdk/robomaker/README.md index a2d2bdbd5900..a7367dc38812 100644 --- a/sdk/robomaker/README.md +++ b/sdk/robomaker/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/route53/README.md b/sdk/route53/README.md index da6f96c5145f..61390c22b570 100644 --- a/sdk/route53/README.md +++ b/sdk/route53/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/route53domains/README.md b/sdk/route53domains/README.md index f4cf02490b3d..4373cec70a90 100644 --- a/sdk/route53domains/README.md +++ b/sdk/route53domains/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/route53recoverycluster/README.md b/sdk/route53recoverycluster/README.md index 3d31d89a1a92..0b97cef3d7d8 100644 --- a/sdk/route53recoverycluster/README.md +++ b/sdk/route53recoverycluster/README.md @@ -36,7 +36,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/route53recoverycontrolconfig/README.md b/sdk/route53recoverycontrolconfig/README.md index 07405a71d6f9..9731bc4897dc 100644 --- a/sdk/route53recoverycontrolconfig/README.md +++ b/sdk/route53recoverycontrolconfig/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/route53recoveryreadiness/README.md b/sdk/route53recoveryreadiness/README.md index 7f267c73297c..03284cfdf2e1 100644 --- a/sdk/route53recoveryreadiness/README.md +++ b/sdk/route53recoveryreadiness/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/route53resolver/README.md b/sdk/route53resolver/README.md index 2f3cb06d8cad..dd47bf419312 100644 --- a/sdk/route53resolver/README.md +++ b/sdk/route53resolver/README.md @@ -36,7 +36,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/rum/README.md b/sdk/rum/README.md index b3daa6896d92..bb72356ab417 100644 --- a/sdk/rum/README.md +++ b/sdk/rum/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/s3/README.md b/sdk/s3/README.md index 92b618b57673..31df455be01f 100644 --- a/sdk/s3/README.md +++ b/sdk/s3/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/s3control/README.md b/sdk/s3control/README.md index 0f2c42508307..a112755197b6 100644 --- a/sdk/s3control/README.md +++ b/sdk/s3control/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/s3outposts/README.md b/sdk/s3outposts/README.md index cd3642ff4152..c9932fec3b51 100644 --- a/sdk/s3outposts/README.md +++ b/sdk/s3outposts/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sagemaker/README.md b/sdk/sagemaker/README.md index 6b6940dbc567..c8bfb0310258 100644 --- a/sdk/sagemaker/README.md +++ b/sdk/sagemaker/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sagemakera2iruntime/README.md b/sdk/sagemakera2iruntime/README.md index ddd07c0049c6..bd1e49f7756b 100644 --- a/sdk/sagemakera2iruntime/README.md +++ b/sdk/sagemakera2iruntime/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sagemakeredge/README.md b/sdk/sagemakeredge/README.md index 3bc7015fde4b..f38be07d21fd 100644 --- a/sdk/sagemakeredge/README.md +++ b/sdk/sagemakeredge/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sagemakerfeaturestoreruntime/README.md b/sdk/sagemakerfeaturestoreruntime/README.md index 2139ea697a70..2610efe1b34c 100644 --- a/sdk/sagemakerfeaturestoreruntime/README.md +++ b/sdk/sagemakerfeaturestoreruntime/README.md @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sagemakerruntime/README.md b/sdk/sagemakerruntime/README.md index 192cb7bbd79e..71c85ac4d9d0 100644 --- a/sdk/sagemakerruntime/README.md +++ b/sdk/sagemakerruntime/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/savingsplans/README.md b/sdk/savingsplans/README.md index df3e9fbe294c..93eebbf6354e 100644 --- a/sdk/savingsplans/README.md +++ b/sdk/savingsplans/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/schemas/README.md b/sdk/schemas/README.md index 1d3c57f572fc..65bc76f35b54 100644 --- a/sdk/schemas/README.md +++ b/sdk/schemas/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/secretsmanager/README.md b/sdk/secretsmanager/README.md index c41b37389e81..c564ae248d23 100644 --- a/sdk/secretsmanager/README.md +++ b/sdk/secretsmanager/README.md @@ -38,7 +38,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/securityhub/README.md b/sdk/securityhub/README.md index 3b549407ade5..6b052d6a8f4a 100644 --- a/sdk/securityhub/README.md +++ b/sdk/securityhub/README.md @@ -35,7 +35,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/serverlessapplicationrepository/README.md b/sdk/serverlessapplicationrepository/README.md index 6a0a15a2ce91..7de7e4402413 100644 --- a/sdk/serverlessapplicationrepository/README.md +++ b/sdk/serverlessapplicationrepository/README.md @@ -31,7 +31,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/servicecatalog/README.md b/sdk/servicecatalog/README.md index 83e870fa0a3f..b9d215ca55ad 100644 --- a/sdk/servicecatalog/README.md +++ b/sdk/servicecatalog/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/servicecatalogappregistry/README.md b/sdk/servicecatalogappregistry/README.md index a2db4a5c381d..662512243dad 100644 --- a/sdk/servicecatalogappregistry/README.md +++ b/sdk/servicecatalogappregistry/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/servicediscovery/README.md b/sdk/servicediscovery/README.md index fda4ff885aa7..c2c9b950a211 100644 --- a/sdk/servicediscovery/README.md +++ b/sdk/servicediscovery/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/servicequotas/README.md b/sdk/servicequotas/README.md index f8b7339249da..3b2b1bd993d1 100644 --- a/sdk/servicequotas/README.md +++ b/sdk/servicequotas/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ses/README.md b/sdk/ses/README.md index 72fc344ca654..25a4424bf538 100644 --- a/sdk/ses/README.md +++ b/sdk/ses/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sesv2/README.md b/sdk/sesv2/README.md index f1b16e077fcb..d5b4aba78e57 100644 --- a/sdk/sesv2/README.md +++ b/sdk/sesv2/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sfn/README.md b/sdk/sfn/README.md index cfe9a11faa25..9acb1ec7f380 100644 --- a/sdk/sfn/README.md +++ b/sdk/sfn/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/shield/README.md b/sdk/shield/README.md index 6b1e2ce10c3c..c8908a264bff 100644 --- a/sdk/shield/README.md +++ b/sdk/shield/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/signer/README.md b/sdk/signer/README.md index dcf14da5afe2..f087844ea4e1 100644 --- a/sdk/signer/README.md +++ b/sdk/signer/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sms/README.md b/sdk/sms/README.md index 387e3d67a454..7e832a141d8e 100644 --- a/sdk/sms/README.md +++ b/sdk/sms/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/snowball/README.md b/sdk/snowball/README.md index b38c320472fd..cddddad78aeb 100644 --- a/sdk/snowball/README.md +++ b/sdk/snowball/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/snowdevicemanagement/README.md b/sdk/snowdevicemanagement/README.md index 92780329c3a4..8203199b86f2 100644 --- a/sdk/snowdevicemanagement/README.md +++ b/sdk/snowdevicemanagement/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sns/README.md b/sdk/sns/README.md index 30feb7470510..ed26e2ec1ba4 100644 --- a/sdk/sns/README.md +++ b/sdk/sns/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sqs/README.md b/sdk/sqs/README.md index f2ed5a0e08ac..f132fefd0eef 100644 --- a/sdk/sqs/README.md +++ b/sdk/sqs/README.md @@ -44,7 +44,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ssm/README.md b/sdk/ssm/README.md index 952e70f312b1..458b79e49783 100644 --- a/sdk/ssm/README.md +++ b/sdk/ssm/README.md @@ -34,7 +34,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ssmcontacts/README.md b/sdk/ssmcontacts/README.md index a9d4fb4663a4..7df63fa95ca3 100644 --- a/sdk/ssmcontacts/README.md +++ b/sdk/ssmcontacts/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ssmincidents/README.md b/sdk/ssmincidents/README.md index d52489d08b91..2732afce044e 100644 --- a/sdk/ssmincidents/README.md +++ b/sdk/ssmincidents/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sso/README.md b/sdk/sso/README.md index 261781c001d6..42f32cefb3e8 100644 --- a/sdk/sso/README.md +++ b/sdk/sso/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ssoadmin/README.md b/sdk/ssoadmin/README.md index 83d3675d9aef..cb35f111eb2e 100644 --- a/sdk/ssoadmin/README.md +++ b/sdk/ssoadmin/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/ssooidc/README.md b/sdk/ssooidc/README.md index 8feadeca2138..c4b6556d774c 100644 --- a/sdk/ssooidc/README.md +++ b/sdk/ssooidc/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/storagegateway/README.md b/sdk/storagegateway/README.md index 35f59208ed42..11dd53db399a 100644 --- a/sdk/storagegateway/README.md +++ b/sdk/storagegateway/README.md @@ -41,7 +41,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/sts/README.md b/sdk/sts/README.md index 86f8da744980..1870e92d041a 100644 --- a/sdk/sts/README.md +++ b/sdk/sts/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/support/README.md b/sdk/support/README.md index 0f1d22055552..c467b3c5b8ad 100644 --- a/sdk/support/README.md +++ b/sdk/support/README.md @@ -42,7 +42,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/swf/README.md b/sdk/swf/README.md index 4b5759108cbc..03925813efc0 100644 --- a/sdk/swf/README.md +++ b/sdk/swf/README.md @@ -28,7 +28,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/synthetics/README.md b/sdk/synthetics/README.md index 05ec3ef6d3aa..4d93d764a219 100644 --- a/sdk/synthetics/README.md +++ b/sdk/synthetics/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/textract/README.md b/sdk/textract/README.md index 9e2cf7377e9e..ca0b85172800 100644 --- a/sdk/textract/README.md +++ b/sdk/textract/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/transcribe/README.md b/sdk/transcribe/README.md index ed79df5defb2..195a82cffc3a 100644 --- a/sdk/transcribe/README.md +++ b/sdk/transcribe/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/transcribestreaming/README.md b/sdk/transcribestreaming/README.md index efd893e92557..0435ba609eaa 100644 --- a/sdk/transcribestreaming/README.md +++ b/sdk/transcribestreaming/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/transfer/README.md b/sdk/transfer/README.md index e8c6c7394be6..d652db124249 100644 --- a/sdk/transfer/README.md +++ b/sdk/transfer/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/translate/README.md b/sdk/translate/README.md index a33729ca628a..0541062b08ed 100644 --- a/sdk/translate/README.md +++ b/sdk/translate/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/voiceid/README.md b/sdk/voiceid/README.md index cad975f6ef70..fadafd61200b 100644 --- a/sdk/voiceid/README.md +++ b/sdk/voiceid/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/waf/README.md b/sdk/waf/README.md index e0fa6b57a663..0a4265176e33 100644 --- a/sdk/waf/README.md +++ b/sdk/waf/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/wafregional/README.md b/sdk/wafregional/README.md index 7faf3c455509..8aa47cc145fb 100644 --- a/sdk/wafregional/README.md +++ b/sdk/wafregional/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/wafv2/README.md b/sdk/wafv2/README.md index 373864bbb48c..162752ebd458 100644 --- a/sdk/wafv2/README.md +++ b/sdk/wafv2/README.md @@ -37,7 +37,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/wellarchitected/README.md b/sdk/wellarchitected/README.md index 13c004f82ce2..eb78fcd429e8 100644 --- a/sdk/wellarchitected/README.md +++ b/sdk/wellarchitected/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/wisdom/README.md b/sdk/wisdom/README.md index 07c90fb54cd9..3245b4aab2aa 100644 --- a/sdk/wisdom/README.md +++ b/sdk/wisdom/README.md @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/workdocs/README.md b/sdk/workdocs/README.md index 8a65841ddce8..63b91e5d2b95 100644 --- a/sdk/workdocs/README.md +++ b/sdk/workdocs/README.md @@ -29,7 +29,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/worklink/README.md b/sdk/worklink/README.md index 8433b9ac0d4c..123709f88325 100644 --- a/sdk/worklink/README.md +++ b/sdk/worklink/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/workmail/README.md b/sdk/workmail/README.md index 712e55407c9c..4baa4d6b8836 100644 --- a/sdk/workmail/README.md +++ b/sdk/workmail/README.md @@ -32,7 +32,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/workmailmessageflow/README.md b/sdk/workmailmessageflow/README.md index ec4415c9e0f5..0446cf00641b 100644 --- a/sdk/workmailmessageflow/README.md +++ b/sdk/workmailmessageflow/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/workspaces/README.md b/sdk/workspaces/README.md index b0f73fba2fc9..499b0fc4ee24 100644 --- a/sdk/workspaces/README.md +++ b/sdk/workspaces/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/workspacesweb/README.md b/sdk/workspacesweb/README.md index 3015a1cdbe7d..2e75d7d2c760 100644 --- a/sdk/workspacesweb/README.md +++ b/sdk/workspacesweb/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help diff --git a/sdk/xray/README.md b/sdk/xray/README.md index f495013a5c99..a0fd8288ff5a 100644 --- a/sdk/xray/README.md +++ b/sdk/xray/README.md @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"] } ## Using the SDK Until the SDK is released, we will be adding information about using the SDK to the -[Guide](https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md). Feel free to suggest +[Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do. ## Getting Help