Skip to content

Commit

Permalink
Implement waiters
Browse files Browse the repository at this point in the history
  • Loading branch information
jdisanti committed Apr 19, 2024
1 parent 3f80a07 commit 6c256e1
Show file tree
Hide file tree
Showing 25 changed files with 2,268 additions and 136 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,11 @@ private class AwsFluentClientDocs(private val codegenContext: ClientCodegenConte
/// Client for $serviceName
///
/// Client for invoking operations on $serviceName. Each operation on $serviceName is a method on this
/// this struct. `.send()` MUST be invoked on the generated operations to dispatch the request to the service.""",
/// this struct. `.send()` MUST be invoked on the generated operations to dispatch the request to the service.""",
)
AwsDocs.clientConstructionDocs(codegenContext)(this)
FluentClientDocs.clientUsageDocs(codegenContext)(this)
FluentClientDocs.waiterDocs(codegenContext)(this)
}

else -> emptySection
Expand Down
4 changes: 2 additions & 2 deletions aws/sdk/integration-tests/ec2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ publish = false

[dev-dependencies]
aws-credential-types = { path = "../../build/aws-sdk/sdk/aws-credential-types", features = ["test-util"] }
aws-smithy-async = { path = "../../build/aws-sdk/sdk/aws-smithy-async" }
aws-smithy-async = { path = "../../build/aws-sdk/sdk/aws-smithy-async", features = ["test-util"] }
aws-smithy-runtime = { path = "../../build/aws-sdk/sdk/aws-smithy-runtime", features = ["client", "test-util"] }
aws-smithy-runtime-api = { path = "../../build/aws-sdk/sdk/aws-smithy-runtime-api", features = ["client", "http-02x"] }
aws-smithy-types = { path = "../../build/aws-sdk/sdk/aws-smithy-types" }
aws-sdk-ec2 = { path = "../../build/aws-sdk/sdk/ec2", features = ["behavior-version-latest"] }
aws-sdk-ec2 = { path = "../../build/aws-sdk/sdk/ec2", features = ["test-util"] }
tokio = { version = "1.23.1", features = ["full"]}
http = "0.2.0"
tokio-stream = "0.1.5"
Loading

0 comments on commit 6c256e1

Please sign in to comment.