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

VpcPeeringAuthorization

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

Represents an authorization for a VPC peering connection between the VPC for an Amazon GameLift fleet and another VPC on an account you have access to. This authorization must exist and be valid for the peering connection to be established. Authorizations are valid for 24 hours after they are issued.

Related actions

"CreateVpcPeeringAuthorization" | "DescribeVpcPeeringAuthorizations" | "DeleteVpcPeeringAuthorization" | "CreateVpcPeeringConnection" | "DescribeVpcPeeringConnections" | "DeleteVpcPeeringConnection" | All APIs by task

interface VpcPeeringAuthorization {
CreationTime?: Date | number | null;
ExpirationTime?: Date | number | null;
GameLiftAwsAccountId?: string | null;
PeerVpcAwsAccountId?: string | null;
PeerVpcId?: string | null;
}

§Properties

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

Time stamp indicating when this authorization was issued. Format is a number expressed in Unix time as milliseconds (for example "1469498468.057").

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

Time stamp indicating when this authorization expires (24 hours after issuance). Format is a number expressed in Unix time as milliseconds (for example "1469498468.057").

§
GameLiftAwsAccountId?: string | null
[src]

A unique identifier for the AWS account that you use to manage your GameLift fleet. You can find your Account ID in the AWS Management Console under account settings.

§
PeerVpcAwsAccountId?: string | null
[src]
§
PeerVpcId?: string | null
[src]

A unique identifier for a VPC with resources to be accessed by your GameLift fleet. The VPC must be in the same Region as your fleet. To look up a VPC ID, use the VPC Dashboard in the AWS Management Console. Learn more about VPC peering in VPC Peering with GameLift Fleets.