Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SSO

import { SSO } from "https://aws-api.deno.dev/v0.3/services/sso.ts?docs=full";
class SSO {
constructor(apiFactory: client.ApiFactory);
async getRoleCredentials(params: GetRoleCredentialsRequest, opts?: client.RequestOptions): Promise<GetRoleCredentialsResponse>;
async listAccountRoles(params: ListAccountRolesRequest, opts?: client.RequestOptions): Promise<ListAccountRolesResponse>;
async listAccounts(params: ListAccountsRequest, opts?: client.RequestOptions): Promise<ListAccountsResponse>;
async logout(params: LogoutRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new SSO(apiFactory: client.ApiFactory)
[src]

§Methods

§

Returns the STS short-term credentials for a given role name that is assigned to the user.

§

Lists all roles that are assigned to the user for a given AWS account.

§

Lists all AWS accounts assigned to the user. These AWS accounts are assigned by the administrator of the account. For more information, see Assign User Access in the AWS SSO User Guide. This operation returns a paginated response.

§
logout(params: LogoutRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes the client- and server-side session that is associated with the user.

§Static Properties