Module Values.ConnectionSource

Information about an Direct Connect connection.

Sourcetype nonrec t = {
  1. ownerAccount : OwnerAccount.t option;
    (*

    The ID of the Amazon Web Services account that owns the connection.

    *)
  2. connectionId : ConnectionId.t option;
    (*

    The ID of the connection.

    *)
  3. connectionName : ConnectionName.t option;
    (*

    The name of the connection.

    *)
  4. connectionState : ConnectionState.t option;
    (*

    The state of the connection. The following are the possible values: ordering: The initial state of a hosted connection provisioned on an interconnect. The connection stays in the ordering state until the owner of the hosted connection confirms or declines the connection order. requested: The initial state of a standard connection. The connection stays in the requested state until the Letter of Authorization (LOA) is sent to the customer. pending: The connection has been approved and is being initialized. available: The network link is up and the connection is ready for use. down: The network link is down. deleting: The connection is being deleted. deleted: The connection has been deleted. rejected: A hosted connection in the ordering state enters the rejected state if it is deleted by the customer. unknown: The state of the connection is not available.

    *)
  5. region : Region.t option;
    (*

    The Amazon Web Services Region where the connection is located.

    *)
  6. location : LocationCode.t option;
    (*

    The location of the connection.

    *)
  7. bandwidth : Bandwidth.t option;
    (*

    The bandwidth of the connection.

    *)
  8. vlan : VLAN.t option;
    (*

    The ID of the VLAN.

    *)
  9. partnerName : PartnerName.t option;
    (*

    The name of the Direct Connect service provider associated with the connection.

    *)
  10. loaIssueTime : LoaIssueTime.t option;
    (*

    The time of the most recent call to DescribeLoa for this connection.

    *)
  11. lagId : LagId.t option;
    (*

    The ID of the LAG.

    *)
  12. awsDevice : AwsDevice.t option;
    (*

    The Direct Connect endpoint on which the physical connection terminates.

    *)
  13. jumboFrameCapable : JumboFrameCapable.t option;
    (*

    Indicates whether jumbo frames are supported.

    *)
  14. awsDeviceV2 : AwsDeviceV2.t option;
    (*

    The Direct Connect endpoint that terminates the physical connection.

    *)
  15. awsLogicalDeviceId : AwsLogicalDeviceId.t option;
    (*

    The Direct Connect endpoint that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    *)
  16. hasLogicalRedundancy : HasLogicalRedundancy.t option;
    (*

    Indicates whether the connection supports a secondary BGP peer in the same address family (IPv4/IPv6).

    *)
  17. tags : TagList.t option;
    (*

    The tags associated with the connection.

    *)
  18. providerName : ProviderName.t option;
    (*

    The name of the service provider associated with the connection.

    *)
  19. macSecCapable : MacSecCapable.t option;
    (*

    Indicates whether the connection supports MAC Security (MACsec).

    *)
  20. portEncryptionStatus : PortEncryptionStatus.t option;
    (*

    The MAC Security (MACsec) port link status of the connection. The valid values are Encryption Up, which means that there is an active Connection Key Name, or Encryption Down.

    *)
  21. encryptionMode : EncryptionMode.t option;
    (*

    The MAC Security (MACsec) connection encryption mode. The valid values are no_encrypt, should_encrypt, and must_encrypt.

    *)
  22. macSecKeys : MacSecKeyList.t option;
    (*

    The MAC Security (MACsec) security keys associated with the connection.

    *)
  23. partnerInterconnectMacSecCapable : PartnerInterconnectMacSecCapable.t option;
    (*

    Indicates whether the interconnect hosting this connection supports MAC Security (MACsec).

    *)
}
Sourcetype nonrec error = [
  1. | `DirectConnectClientException of DirectConnectClientException.t
  2. | `DirectConnectServerException of DirectConnectServerException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?ownerAccount:??? -> ?connectionId:??? -> ?connectionName:??? -> ?connectionState:??? -> ?region:??? -> ?location:??? -> ?bandwidth:??? -> ?vlan:??? -> ?partnerName:??? -> ?loaIssueTime:??? -> ?lagId:??? -> ?awsDevice:??? -> ?jumboFrameCapable:??? -> ?awsDeviceV2:??? -> ?awsLogicalDeviceId:??? -> ?hasLogicalRedundancy:??? -> ?tags:??? -> ?providerName:??? -> ?macSecCapable:??? -> ?portEncryptionStatus:??? -> ?encryptionMode:??? -> ?macSecKeys:??? -> ?partnerInterconnectMacSecCapable:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DirectConnectClientException of DirectConnectClientException.t | `DirectConnectServerException of DirectConnectServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DirectConnectClientException of DirectConnectClientException.t | `DirectConnectServerException of DirectConnectServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of JumboFrameCapable.t | `Enum of string | `Integer of VLAN.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of OwnerAccount.t | `Timestamp of LoaIssueTime.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