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

PhysicalResource

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

Defines a physical resource. A physical resource is a resource that exists in your account. It can be identified using an Amazon Resource Name (ARN) or an AWS Resilience Hub-native identifier.

interface PhysicalResource {
additionalInfo?: {
[key: string]: string[] | null | undefined;
}
| null;
appComponents?: AppComponent[] | null;
excluded?: boolean | null;
logicalResourceId: LogicalResourceId;
physicalResourceId: PhysicalResourceId;
resourceName?: string | null;
resourceType: string;
}

§Properties

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

Additional configuration parameters for an AWS Resilience Hub application.

Note: Currently, this parameter accepts a key-value mapping (in a string format) of only one failover region and one associated account. Key: "failover-regions" Value: "[{"region":"<REGION>", "accounts":[{"id":"<ACCOUNT_ID>"}]}]"

§
appComponents?: AppComponent[] | null
[src]

The application components that belong to this resource.

§
excluded?: boolean | null
[src]

Indicates if a resource is included or excluded from the assessment.

§
logicalResourceId: LogicalResourceId
[src]

The logical identifier of the resource.

§
physicalResourceId: PhysicalResourceId
[src]

The physical identifier of the resource.

§
resourceName?: string | null
[src]

The name of the resource.

§
resourceType: string
[src]

The type of resource.