Module Values.VpcPeeringAuthorizationSource

Represents an authorization for a VPC peering connection between the VPC for an Amazon GameLift Servers 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 All APIs by task

Sourcetype nonrec t = {
  1. gameLiftAwsAccountId : NonZeroAndMaxString.t option;
    (*

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

    *)
  2. peerVpcAwsAccountId : NonZeroAndMaxString.t option;
    (*

    The authorization's peer VPC Amazon Web Services account ID.

    *)
  3. peerVpcId : NonZeroAndMaxString.t option;
    (*

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

    *)
  4. creationTime : Timestamp.t option;
    (*

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

    *)
  5. expirationTime : Timestamp.t option;
    (*

    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").

    *)
}
Sourceval make : ?gameLiftAwsAccountId:??? -> ?peerVpcAwsAccountId:??? -> ?peerVpcId:??? -> ?creationTime:??? -> ?expirationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonZeroAndMaxString.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t