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

GetGroupPolicyResponse

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

Contains the response to a successful "GetGroupPolicy" request.

interface GetGroupPolicyResponse {
GroupName: string;
PolicyDocument: string;
PolicyName: string;
}

§Properties

§
GroupName: string
[src]

The group the policy is associated with.

§
PolicyDocument: string
[src]

The policy document.

IAM stores policies in JSON format. However, resources that were created using CloudFormation templates can be formatted in YAML. CloudFormation always converts a YAML policy to JSON format before submitting it to IAM.

§
PolicyName: string
[src]

The name of the policy.