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

GroupDetail

import type { GroupDetail } from "https://aws-api.deno.dev/v0.4/services/iam.ts?docs=full";

Contains information about an IAM group, including all of the group's policies.

This data type is used as a response element in the "GetAccountAuthorizationDetails" operation.

interface GroupDetail {
Arn?: string | null;
AttachedManagedPolicies: AttachedPolicy[];
CreateDate?: Date | number | null;
GroupId?: string | null;
GroupName?: string | null;
GroupPolicyList: PolicyDetail[];
Path?: string | null;
}

§Properties

§
Arn?: string | null
[src]
§
AttachedManagedPolicies: AttachedPolicy[]
[src]

A list of the managed policies attached to the group.

§
CreateDate?: Date | number | null
[src]

The date and time, in ISO 8601 date-time format, when the group was created.

§
GroupId?: string | null
[src]

The stable and unique string identifying the group. For more information about IDs, see IAM identifiers in the IAM User Guide.

§
GroupName?: string | null
[src]

The friendly name that identifies the group.

§
GroupPolicyList: PolicyDetail[]
[src]

A list of the inline policies embedded in the group.

§
Path?: string | null
[src]

The path to the group. For more information about paths, see IAM identifiers in the IAM User Guide.