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

InstanceProfile

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

Contains information about an instance profile.

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

  • "CreateInstanceProfile"
  • "GetInstanceProfile"
  • "ListInstanceProfiles"
  • "ListInstanceProfilesForRole"
interface InstanceProfile {
Arn: string;
CreateDate: Date | number;
InstanceProfileId: string;
InstanceProfileName: string;
Path: string;
Roles: Role[];
Tags: Tag[];
}

§Properties

§
Arn: string
[src]

The Amazon Resource Name (ARN) specifying the instance profile. 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 when the instance profile was created.

§
InstanceProfileId: string
[src]

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

§
InstanceProfileName: string
[src]

The name identifying the instance profile.

§
Path: string
[src]

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

§
Roles: Role[]
[src]

The role associated with the instance profile.

§
Tags: Tag[]
[src]

A list of tags that are attached to the instance profile. For more information about tagging, see Tagging IAM resources in the IAM User Guide.