Module Values.ConnectorSummarySource

A condensed overview of the connectorV2..

Sourcetype nonrec t = {
  1. connectorArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the connectorV2.

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

    The UUID of the connectorV2 to identify connectorV2 resource.

    *)
  3. name : NonEmptyString.t option;
    (*

    The Name field contains the user-defined name assigned to the integration connector. This helps identify and manage multiple connectors within Security Hub.

    *)
  4. description : NonEmptyString.t option;
    (*

    The description of the connectorV2.

    *)
  5. providerSummary : ProviderSummary.t option;
    (*

    The connectorV2 third party provider configuration summary.

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

    ISO 8601 UTC timestamp for the time create the connectorV2.

    *)
}
Sourceval make : ?connectorArn:??? -> ?connectorId:??? -> ?name:??? -> ?description:??? -> ?providerSummary:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Enum of string ]) list | `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