Module Values.GatewayRouteRefSource

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

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

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

    *)
  2. createdAt : Timestamp.t option;
    (*

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

    *)
  3. gatewayRouteName : ResourceName.t option;
    (*

    The name of the gateway route.

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

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

    *)
  5. meshName : ResourceName.t option;
    (*

    The name of the service mesh that the resource resides in.

    *)
  6. meshOwner : AccountId.t option;
    (*

    The Amazon Web Services 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.

    *)
  7. resourceOwner : AccountId.t option;
    (*

    The Amazon Web Services 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.

    *)
  8. version : Long.t option;
    (*

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

    *)
  9. virtualGatewayName : ResourceName.t option;
    (*

    The virtual gateway that the gateway route is associated with.

    *)
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?gatewayRouteName:??? -> ?lastUpdatedAt:??? -> ?meshName:??? -> ?meshOwner:??? -> ?resourceOwner:??? -> ?version:??? -> ?virtualGatewayName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of Arn.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