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

IdentityStore

import { IdentityStore } from "https://aws-api.deno.dev/v0.1/services/identitystore.ts?docs=full";
class IdentityStore {
constructor(apiFactory: client.ApiFactory);
async describeGroup(params: DescribeGroupRequest): Promise<DescribeGroupResponse>;
async describeUser(params: DescribeUserRequest): Promise<DescribeUserResponse>;
async listGroups(params: ListGroupsRequest): Promise<ListGroupsResponse>;
async listUsers(params: ListUsersRequest): Promise<ListUsersResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§
describeGroup(params: DescribeGroupRequest): Promise<DescribeGroupResponse>
[src]

Retrieves the group metadata and attributes from GroupId in an identity store.

§
describeUser(params: DescribeUserRequest): Promise<DescribeUserResponse>
[src]

Retrieves the user metadata and attributes from UserId in an identity store.

§
listGroups(params: ListGroupsRequest): Promise<ListGroupsResponse>
[src]

Lists the attribute name and value of the group that you specified in the search. We only support DisplayName as a valid filter attribute path currently, and filter is required. This API returns minimum attributes, including GroupId and group DisplayName in the response.

§
listUsers(params: ListUsersRequest): Promise<ListUsersResponse>
[src]

Lists the attribute name and value of the user that you specified in the search. We only support UserName as a valid filter attribute path currently, and filter is required. This API returns minimum attributes, including UserId and UserName in the response.

§Static Properties