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

Permission

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

Permissions designate which private CA actions can be performed by an Amazon Web Services service or entity. In order for ACM to automatically renew private certificates, you must give the ACM service principal all available permissions (IssueCertificate, GetCertificate, and ListPermissions). Permissions can be assigned with the CreatePermission action, removed with the DeletePermission action, and listed with the ListPermissions action.

interface Permission {
Actions?: ActionType[] | null;
CertificateAuthorityArn?: string | null;
CreatedAt?: Date | number | null;
Policy?: string | null;
Principal?: string | null;
SourceAccount?: string | null;
}

§Properties

§
Actions?: ActionType[] | null
[src]

The private CA actions that can be performed by the designated Amazon Web Services service.

§
CertificateAuthorityArn?: string | null
[src]

The Amazon Resource Number (ARN) of the private CA from which the permission was issued.

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

The time at which the permission was created.

§
Policy?: string | null
[src]

The name of the policy that is associated with the permission.

§
Principal?: string | null
[src]

The Amazon Web Services service or entity that holds the permission. At this time, the only valid principal is acm.amazonaws.com.

§
SourceAccount?: string | null
[src]

The ID of the account that assigned the permission.