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

Group

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

Contains information about an IAM group entity.

This data type is used as a response element in the following operations:

  • "CreateGroup"
  • "GetGroup"
  • "ListGroups"
interface Group {
Arn: string;
CreateDate: Date | number;
GroupId: string;
GroupName: string;
Path: string;
}

§Properties

§
Arn: string
[src]

The Amazon Resource Name (ARN) specifying the group. For more information about ARNs and how to use them in policies, see IAM identifiers in the IAM User Guide.

§
CreateDate: Date | number
[src]

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

§
GroupId: string
[src]

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

§
GroupName: string
[src]

The friendly name that identifies the group.

§
Path: string
[src]

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