Module Values.ConnectorSource

An object that represents a connector for an Amazon EVS environment. A connector establishes a vCenter connection using the credentials stored in Amazon Web Services Secrets Manager.

Sourcetype nonrec t = {
  1. environmentId : EnvironmentId.t option;
    (*

    The unique ID of the environment that the connector belongs to.

    *)
  2. connectorId : ConnectorId.t option;
    (*

    The unique ID of the connector.

    *)
  3. type_ : ConnectorType.t option;
    (*

    The type of the connector.

    *)
  4. applianceFqdn : ApplianceFqdn.t option;
    (*

    The fully qualified domain name (FQDN) of the VCF appliance that the connector connects to.

    *)
  5. secretArn : SecretIdentifier.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that stores the credentials for the VCF appliance.

    *)
  6. state : ConnectorState.t option;
    (*

    The state of the connector.

    *)
  7. stateDetails : StateDetails.t option;
    (*

    A detailed description of the connector state.

    *)
  8. status : CheckResult.t option;
    (*

    The status of the connector.

    *)
  9. checks : ConnectorsChecksList.t option;
    (*

    A list of checks that are run on the connector.

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

    The date and time that the connector was created.

    *)
  11. modifiedAt : Timestamp.t option;
    (*

    The date and time that the connector was modified.

    *)
}
Sourceval make : ?environmentId:??? -> ?connectorId:??? -> ?type_:??? -> ?applianceFqdn:??? -> ?secretArn:??? -> ?state:??? -> ?stateDetails:??? -> ?status:??? -> ?checks:??? -> ?createdAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.t ]) list ] list | `String of EnvironmentId.t | `Timestamp of Timestamp.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