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.3/services/identitystore.ts?docs=full";
class IdentityStore {
constructor(apiFactory: client.ApiFactory);
async describeGroup(params: DescribeGroupRequest, opts?: client.RequestOptions): Promise<DescribeGroupResponse>;
async describeUser(params: DescribeUserRequest, opts?: client.RequestOptions): Promise<DescribeUserResponse>;
async listGroups(params: ListGroupsRequest, opts?: client.RequestOptions): Promise<ListGroupsResponse>;
async listUsers(params: ListUsersRequest, opts?: client.RequestOptions): Promise<ListUsersResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§

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

§

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

§

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.

§

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