Module Values.ConnectionSource

The object describing the provided connectivity from the AWS region to the partner location.

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

    The short identifier of the connection object.

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

    An ARN of a Connection object.

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

    A descriptive name for the connection.

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

    The specific selected bandwidth of this connection.

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

    The Attach Point to which the connection should be associated."

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

    The specific Environment this connection is placed upon.

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

    The provider on the remote side of this Connection.

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

    The provider specific location on the remote side of this Connection

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

    The specific product type of this Connection.

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

    *)
  13. ownerAccount : OwnerAccountId.t option;
    (*

    The account that owns this Connection

    *)
  14. activationKey : ActivationKey.t option;
    (*

    The Activation Key associated to this connection.

    *)
  15. tags : TagMap.t option;
    (*

    The tags on the Connection

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