Expand description
Client for calling AWS Single Sign-On.
§Using the Client
A client has a function for every operation that can be performed by the service.
For example, the GetRoleCredentials
operation has
a Client::get_role_credentials
, function which returns a builder for that operation.
The fluent builder ultimately has a send()
function that returns an async future that
returns a result, as illustrated below:
ⓘ
let result = client.get_role_credentials()
.role_name("example")
.send()
.await;
The underlying HTTP requests that get made by this can be modified with the customize_operation
function on the fluent builder. See the customize
module for more
information.
Modules§
- Operation customization and supporting types.
Structs§
- Client for AWS Single Sign-On