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

DescribePackageResponse

import type { DescribePackageResponse } from "https://aws-api.deno.dev/v0.3/services/panorama.ts?docs=full";
interface DescribePackageResponse {
Arn: string;
CreatedTime: Date | number;
PackageId: string;
PackageName: string;
ReadAccessPrincipalArns?: string[] | null;
StorageLocation: StorageLocation;
Tags: {
[key: string]: string | null | undefined;
}
;
WriteAccessPrincipalArns?: string[] | null;
}

§Properties

§
Arn: string
[src]

The package's ARN.

§
CreatedTime: Date | number
[src]

When the package was created.

§
PackageId: string
[src]

The package's ID.

§
PackageName: string
[src]

The package's name.

§
ReadAccessPrincipalArns?: string[] | null
[src]

ARNs of accounts that have read access to the package.

§
StorageLocation: StorageLocation
[src]

The package's storage location.

§
Tags: {
[key: string]: string | null | undefined;
}
[src]

The package's tags.

§
WriteAccessPrincipalArns?: string[] | null
[src]

ARNs of accounts that have write access to the package.