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

ResourceShareAssociation

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

Describes an association with a resource share and either a principal or a resource.

interface ResourceShareAssociation {
associatedEntity?: string | null;
associationType?: ResourceShareAssociationType | null;
creationTime?: Date | number | null;
external?: boolean | null;
lastUpdatedTime?: Date | number | null;
resourceShareArn?: string | null;
resourceShareName?: string | null;
statusMessage?: string | null;
}

§Properties

§
associatedEntity?: string | null
[src]

The associated entity. This can be either of the following:

  • For a resource association, this is the Amazon Resoure Name (ARN) of the resource.
  • For principal associations, this is one of the following:
    • The ID of an Amazon Web Services account
    • The Amazon Resoure Name (ARN) of an organization in Organizations
    • The ARN of an organizational unit (OU) in Organizations
    • The ARN of an IAM role
    • The ARN of an IAM user
§
associationType?: ResourceShareAssociationType | null
[src]

The type of entity included in this association.

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

The date and time when the association was created.

§
external?: boolean | null
[src]

Indicates whether the principal belongs to the same organization in Organizations as the Amazon Web Services account that owns the resource share.

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

The date and time when the association was last updated.

§
resourceShareArn?: string | null
[src]

The Amazon Resoure Name (ARN) of the resource share.

§
resourceShareName?: string | null
[src]

The name of the resource share.

§

The current status of the association.

§
statusMessage?: string | null
[src]

A message about the status of the association.