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

GatewayRouteRef

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

An object that represents a gateway route returned by a list operation.

interface GatewayRouteRef {
arn: string;
createdAt: Date | number;
gatewayRouteName: string;
lastUpdatedAt: Date | number;
meshName: string;
meshOwner: string;
resourceOwner: string;
version: number;
virtualGatewayName: string;
}

§Properties

§
arn: string
[src]

The full Amazon Resource Name (ARN) for the gateway route.

§
createdAt: Date | number
[src]

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

§
gatewayRouteName: string
[src]

The name of the gateway route.

§
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 resource 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.

§
virtualGatewayName: string
[src]

The virtual gateway that the gateway route is associated with.