Module Values.OdbPeeringConnectionSummarySource

A summary of an ODB peering connection.

Sourcetype nonrec t = {
  1. odbPeeringConnectionId : ResourceIdOrArn.t option;
    (*

    The unique identifier of the ODB peering connection. A sample ID is odbpcx-abcdefgh12345678.

    *)
  2. displayName : String_.t option;
    (*

    The display name of the ODB peering connection.

    *)
  3. status : ResourceStatus.t option;
    (*

    The status of the ODB peering connection.

    *)
  4. statusReason : String_.t option;
    (*

    The reason for the current status of the ODB peering connection.

    *)
  5. odbPeeringConnectionArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the ODB peering connection.

    *)
  6. odbNetworkArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the ODB network that initiated the peering connection.

    *)
  7. peerNetworkArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the peer network.

    *)
  8. odbPeeringConnectionType : String_.t option;
    (*

    The type of the ODB peering connection. Valid Values: ODB-VPC | ODB-ODB

    *)
  9. peerNetworkCidrs : PeeredCidrList.t option;
    (*

    The CIDR blocks associated with the peering connection. These CIDR blocks define the IP address ranges that can communicate through the peering connection.

    *)
  10. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the ODB peering connection was created.

    *)
  11. percentProgress : Float_.t option;
    (*

    The percentage progress of the ODB peering connection creation or deletion.

    *)
}
Sourceval make : ?odbPeeringConnectionId:??? -> ?displayName:??? -> ?status:??? -> ?statusReason:??? -> ?odbPeeringConnectionArn:??? -> ?odbNetworkArn:??? -> ?peerNetworkArn:??? -> ?odbPeeringConnectionType:??? -> ?peerNetworkCidrs:??? -> ?createdAt:??? -> ?percentProgress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of Float_.t | `List of [> `String of PeeredCidr.t ] list | `String of ResourceIdOrArn.t | `Timestamp of SyntheticTimestamp_date_time.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