Struct aws_sdk_sso::client::Client
source · [−]pub struct Client<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }Expand description
Client for AWS Single Sign-On
Client for invoking operations on AWS Single Sign-On. Each operation on AWS Single Sign-On is a method on this
this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.
Implementations
impl<C, M, R> Client<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> Client<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
Constructs a fluent builder for the GetRoleCredentials operation.
- The fluent builder is configurable:
role_name(impl Into<String>)/set_role_name(Option<String>):The friendly name of the role that is assigned to the user.
account_id(impl Into<String>)/set_account_id(Option<String>):The identifier for the AWS account that is assigned to the user.
access_token(impl Into<String>)/set_access_token(Option<String>):The token issued by the
CreateTokenAPI call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.
- On success, responds with
GetRoleCredentialsOutputwith field(s):role_credentials(Option<RoleCredentials>):The credentials for the role that is assigned to the user.
- On failure, responds with
SdkError<GetRoleCredentialsError>
Constructs a fluent builder for the ListAccountRoles operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
next_token(impl Into<String>)/set_next_token(Option<String>):The page token from the previous response output when you request subsequent pages.
max_results(i32)/set_max_results(Option<i32>):The number of items that clients can request per page.
access_token(impl Into<String>)/set_access_token(Option<String>):The token issued by the
CreateTokenAPI call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.account_id(impl Into<String>)/set_account_id(Option<String>):The identifier for the AWS account that is assigned to the user.
- On success, responds with
ListAccountRolesOutputwith field(s):next_token(Option<String>):The page token client that is used to retrieve the list of accounts.
role_list(Option<Vec<RoleInfo>>):A paginated response with the list of roles and the next token if more results are available.
- On failure, responds with
SdkError<ListAccountRolesError>
Constructs a fluent builder for the ListAccounts operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
next_token(impl Into<String>)/set_next_token(Option<String>):(Optional) When requesting subsequent pages, this is the page token from the previous response output.
max_results(i32)/set_max_results(Option<i32>):This is the number of items clients can request per page.
access_token(impl Into<String>)/set_access_token(Option<String>):The token issued by the
CreateTokenAPI call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.
- On success, responds with
ListAccountsOutputwith field(s):next_token(Option<String>):The page token client that is used to retrieve the list of accounts.
account_list(Option<Vec<AccountInfo>>):A paginated response with the list of account information and the next token if more results are available.
- On failure, responds with
SdkError<ListAccountsError>
Constructs a fluent builder for the Logout operation.
- The fluent builder is configurable:
access_token(impl Into<String>)/set_access_token(Option<String>):The token issued by the
CreateTokenAPI call. For more information, see CreateToken in the AWS SSO OIDC API Reference Guide.
- On success, responds with
LogoutOutput - On failure, responds with
SdkError<LogoutError>
Creates a client with the given service config and connector override.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for Client<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for Client<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more