Unverified Commit 27102829 authored by ysaito1001's avatar ysaito1001 Committed by GitHub
Browse files

Merge branch 'main' into track-features-for-account-based-endpoints

parents 035b8f95 1fe10969
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -69,11 +69,6 @@ jobs:
      with:
        repository: awslabs/aws-sdk-rust
        path: aws-sdk-rust
    # The examples from aws-doc-sdk-examples are needed to see if smithy-rs changes break examples
    - uses: actions/checkout@v4
      with:
        repository: awsdocs/aws-doc-sdk-examples
        path: aws-doc-sdk-examples
    - name: Run ${{ matrix.actions.action }}
      uses: ./smithy-rs/.github/actions/docker-build
      with:
+4 −0
Original line number Diff line number Diff line
@@ -33,3 +33,7 @@ jobs:
      CANARY_GITHUB_ACTIONS_ROLE_ARN: ${{ secrets.CANARY_GITHUB_ACTIONS_ROLE_ARN }}
      CANARY_STACK_CDK_OUTPUTS_BUCKET_NAME: ${{ secrets.CANARY_STACK_CDK_OUTPUTS_BUCKET_NAME }}
      SMITHY_RS_ECR_PUSH_ROLE_ARN: ${{ secrets.SMITHY_RS_ECR_PUSH_ROLE_ARN }}
      MAVEN_CENTRAL_GPG_PUBLIC_KEY_SECRET_ARN: ${{ secrets.MAVEN_CENTRAL_GPG_PUBLIC_KEY_SECRET_ARN }}
      MAVEN_CENTRAL_GPG_PRIVATE_KEY_SECRET_ARN: ${{ secrets.MAVEN_CENTRAL_GPG_PRIVATE_KEY_SECRET_ARN }}
      MAVEN_CENTRAL_GPG_PASSPHRASE_SECRET_ARN: ${{ secrets.MAVEN_CENTRAL_GPG_PASSPHRASE_SECRET_ARN }}
      MAVEN_CENTRAL_SONATYPE_CREDENTIALS_SECRET_ARN: ${{ secrets.MAVEN_CENTRAL_SONATYPE_CREDENTIALS_SECRET_ARN }}
+2 −2
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ internal class AwsCrateDocGenerator(private val codegenContext: ClientCodegenCon
                #### Getting Started

                > Examples are available for many services and operations, check out the
                > [examples folder in GitHub](https://github.com/awslabs/aws-sdk-rust/tree/main/examples).
                > [usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1).

                The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
                as a dependency within your Rust project to execute asynchronous code. To add `$moduleName` to
@@ -209,7 +209,7 @@ internal class AwsCrateDocGenerator(private val codegenContext: ClientCodegenCon
                * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
                * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
                * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
                * [Usage examples](https://github.com/awslabs/aws-sdk-rust/tree/main/examples)${"\n"}
                * [Usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1)${"\n"}
                """.trimIndent(),
            )

+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-config"
version = "1.8.6"
version = "1.8.7"
authors = [
    "AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
    "Russell Cohen <rcoh@amazon.com>",
+2 −3
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ async fn example() {

## Getting Started

_Examples are available for many services and operations, check out the [examples folder in GitHub][Usage examples]._
_Examples are available for many services and operations, check out the [Usage examples]._

The SDK provides one crate per AWS service. You must add [Tokio] as a dependency within your Rust project to execute asynchronous code. To add aws-sdk-config to your project, add the following to your Cargo.toml file where VERSION is the version of the SDK you want to use:

@@ -58,13 +58,12 @@ Suggestions for additional sections or improvements for the guide are welcome. P

This project is licensed under the Apache-2.0 License.

[examples folder in GitHub]: https://github.com/awslabs/aws-sdk-rust/tree/main/examples
[Tokio]: https://crates.io/crates/tokio
[Guide]: https://github.com/awslabs/aws-sdk-rust/blob/main/Guide.md
[GitHub discussions]: https://github.com/awslabs/aws-sdk-rust/discussions
[GitHub issues]: https://github.com/awslabs/aws-sdk-rust/issues/new/choose
[Generated Docs]: https://awslabs.github.io/aws-sdk-rust/
[Usage examples]: https://github.com/awslabs/aws-sdk-rust/tree/main/examples
[Usage examples]: https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1

<!-- anchor_start:footer -->
This crate is part of the [AWS SDK for Rust](https://awslabs.github.io/aws-sdk-rust/) and the [smithy-rs](https://github.com/smithy-lang/smithy-rs) code generator.
Loading