Please Note: The SDK is currently in Developer Preview and is intended strictly for feedback purposes only. Do not use this SDK for production workloads.
With the Amazon Cognito user pools API, you can set up user pools and app clients, and authenticate users. To authenticate users from third-party identity providers (IdPs) in this API, you can link IdP users to native user profiles. Learn more about the authentication and authorization of federated users in the Using the Amazon Cognito user pools API and user pool endpoints.
This API reference provides detailed information about API operations and object types in Amazon Cognito. At the bottom of the page for each API operation and object, under See Also, you can learn how to use it in an Amazon Web Services SDK in the language of your choice.
Along with resource management operations, the Amazon Cognito user pools API includes classes of operations and authorization models for client-side and server-side user operations. For more information, see Using the Amazon Cognito native and OIDC APIs in the Amazon Cognito Developer Guide.
You can also start reading about the CognitoIdentityProvider client in the following SDK guides. - Amazon Web Services Command Line Interface - Amazon Web Services SDK for .NET - Amazon Web Services SDK for C++ - Amazon Web Services SDK for Go - Amazon Web Services SDK for Java V2 - Amazon Web Services SDK for JavaScript - Amazon Web Services SDK for PHP V3 - Amazon Web Services SDK for Python - Amazon Web Services SDK for Ruby V3
To get started with an Amazon Web Services SDK, see Tools to Build on Amazon Web Services. For example actions and scenarios, see Code examples for Amazon Cognito Identity Provider using Amazon Web Services SDKs.
Examples are available for many services and operations, check out the examples folder in GitHub.
The SDK provides one crate per AWS service. You must add Tokio
as a dependency within your Rust project to execute asynchronous code. To add aws-sdk-cognitoidentityprovider
to
your project, add the following to your Cargo.toml file:
toml
[dependencies]
aws-config = "0.56.1"
aws-sdk-cognitoidentityprovider = "0.31.1"
tokio = { version = "1", features = ["full"] }
Then in code, a client can be created with the following:
```rust,norun use awssdk_cognitoidentityprovider as cognitoidentityprovider;
async fn main() -> Result<(), cognitoidentityprovider::Error> { let config = awsconfig::loadfromenv().await; let client = awssdk_cognitoidentityprovider::Client::new(&config);
// ... make some calls with the client
Ok(())
} ```
See the client documentation for information on what calls can be made, and the inputs and outputs for each of those calls.
Until the SDK is released, we will be adding information about using the SDK to the Developer Guide. Feel free to suggest additional sections for the guide by opening an issue and describing what you are trying to do.
This project is licensed under the Apache-2.0 License.