Module Values.InterconnectSource

Information about an interconnect.

Sourcetype nonrec t = {
  1. interconnectId : InterconnectId.t option;
    (*

    The ID of the interconnect.

    *)
  2. interconnectName : InterconnectName.t option;
    (*

    The name of the interconnect.

    *)
  3. interconnectState : InterconnectState.t option;
    (*

    The state of the interconnect. The following are the possible values: requested: The initial state of an interconnect. The interconnect stays in the requested state until the Letter of Authorization (LOA) is sent to the customer. pending: The interconnect is approved, and is being initialized. available: The network link is up, and the interconnect is ready for use. down: The network link is down. deleting: The interconnect is being deleted. deleted: The interconnect is deleted. unknown: The state of the interconnect is not available.

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

    The Amazon Web Services Region where the connection is located.

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

    The location of the connection.

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

    The bandwidth of the connection.

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

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

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

    The ID of the LAG.

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

    The Direct Connect endpoint on which the physical connection terminates.

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

    Indicates whether jumbo frames are supported.

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

    The Direct Connect endpoint that terminates the physical connection.

    *)
  12. 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.

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

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

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

    The tags associated with the interconnect.

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

    The name of the service provider associated with the interconnect.

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

    Indicates whether the interconnect supports MAC Security (MACsec).

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

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

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

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

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

    The MAC Security (MACsec) security keys.

    *)
}
Sourcetype nonrec error = [
  1. | `DirectConnectClientException of DirectConnectClientException.t
  2. | `DirectConnectServerException of DirectConnectServerException.t
  3. | `DuplicateTagKeysException of DuplicateTagKeysException.t
  4. | `TooManyTagsException of TooManyTagsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?interconnectId:??? -> ?interconnectName:??? -> ?interconnectState:??? -> ?region:??? -> ?location:??? -> ?bandwidth:??? -> ?loaIssueTime:??? -> ?lagId:??? -> ?awsDevice:??? -> ?jumboFrameCapable:??? -> ?awsDeviceV2:??? -> ?awsLogicalDeviceId:??? -> ?hasLogicalRedundancy:??? -> ?tags:??? -> ?providerName:??? -> ?macSecCapable:??? -> ?portEncryptionStatus:??? -> ?encryptionMode:??? -> ?macSecKeys:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DirectConnectClientException of DirectConnectClientException.t | `DirectConnectServerException of DirectConnectServerException.t | `DuplicateTagKeysException of unit | `TooManyTagsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DirectConnectClientException of DirectConnectClientException.t | `DirectConnectServerException of DirectConnectServerException.t | `DuplicateTagKeysException of unit | `TooManyTagsException of unit | `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 | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of InterconnectId.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