Skip to main content

Module client

Module client 

Source
Expand description

Client for calling AWS Sign-In Service.

§Using the Client

A client has a function for every operation that can be performed by the service. For example, the DeleteConsoleAuthorizationConfiguration operation has a Client::delete_console_authorization_configuration, 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.delete_console_authorization_configuration()
    .target_id("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§

customize
Operation customization and supporting types.

Structs§

Client
Client for AWS Sign-In Service