Module Values.ConnectionSummarySource

Summarized view of a Connection object.

Sourcetype nonrec t = {
  1. id : ConnectionId.t option;
    (*

    The identifier of the requested Connection

    *)
  2. arn : AmazonResourceName.t option;
    (*

    The ARN of the Connection

    *)
  3. description : ConnectionDescription.t option;
    (*

    A descriptive name of the Connection

    *)
  4. bandwidth : ConnectionBandwidth.t option;
    (*

    The bandwidth of the Connection

    *)
  5. attachPoint : AttachPoint.t option;
    (*

    The Attach Point to which the connection should be associated.

    *)
  6. environmentId : EnvironmentId.t option;
    (*

    The Environment that this Connection is created on.

    *)
  7. provider : Provider.t option;
    (*

    The provider on the remote end of this Connection

    *)
  8. location : Location.t option;
    (*

    The provider specific location at the remote end of this Connection

    *)
  9. type_ : ProductType.t option;
    (*

    The product variant supplied by this resource.

    *)
  10. state : ConnectionState.t option;
    (*

    requested: The initial state of a connection. The state will remain here until the Connection is accepted on the Partner portal. pending: The connection has been accepted and is being provisioned between AWS and the Partner. available: The connection has been fully provisioned between AWS and the Partner. deleting: The connection is being deleted. deleted: The connection has been deleted. failed: The connection has failed to be created. updating: The connection is being updated.

    *)
  11. sharedId : ConnectionSharedId.t option;
    (*

    An identifier used by both AWS and the remote partner to identify the specific connection.

    *)
  12. billingTier : BillingTier.t option;
    (*

    The billing tier this connection is currently assigned.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?description:??? -> ?bandwidth:??? -> ?attachPoint:??? -> ?environmentId:??? -> ?provider:??? -> ?location:??? -> ?type_:??? -> ?state:??? -> ?sharedId:??? -> ?billingTier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of BillingTier.t | `String of ConnectionId.t | `Structure of (string * [> `String of DirectConnectGatewayAttachPoint.t ]) list ]) 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