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

VirtualNodeRef

import type { VirtualNodeRef } from "https://aws-api.deno.dev/v0.3/services/appmesh.ts?docs=full";

An object that represents a virtual node returned by a list operation.

interface VirtualNodeRef {
arn: string;
createdAt: Date | number;
lastUpdatedAt: Date | number;
meshName: string;
meshOwner: string;
resourceOwner: string;
version: number;
virtualNodeName: string;
}

§Properties

§
arn: string
[src]

The full Amazon Resource Name (ARN) for the virtual node.

§
createdAt: Date | number
[src]

The Unix epoch timestamp in seconds for when the resource was created.

§
lastUpdatedAt: Date | number
[src]

The Unix epoch timestamp in seconds for when the resource was last updated.

§
meshName: string
[src]

The name of the service mesh that the virtual node resides in.

§
meshOwner: string
[src]

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

§
resourceOwner: string
[src]

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

§
version: number
[src]

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

§
virtualNodeName: string
[src]

The name of the virtual node.