Module Values.GuardrailSummarySource

Contains details about a guardrail. This data type is used in the following API operations: ListGuardrails response body

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

    The unique identifier of the guardrail.

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

    The ARN of the guardrail.

    *)
  3. status : GuardrailStatus.t option;
    (*

    The status of the guardrail.

    *)
  4. name : GuardrailName.t option;
    (*

    The name of the guardrail.

    *)
  5. description : GuardrailDescription.t option;
    (*

    A description of the guardrail.

    *)
  6. version : GuardrailVersion.t option;
    (*

    The version of the guardrail.

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

    The date and time at which the guardrail was created.

    *)
  8. updatedAt : Timestamp.t option;
    (*

    The date and time at which the guardrail was last updated.

    *)
  9. crossRegionDetails : GuardrailCrossRegionDetails.t option;
    (*

    Details about the system-defined guardrail profile that you're using with your guardrail, including the guardrail profile ID and Amazon Resource Name (ARN).

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?status:??? -> ?name:??? -> ?description:??? -> ?version:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?crossRegionDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GuardrailId.t | `Structure of (string * [> `String of GuardrailCrossRegionGuardrailProfileId.t ]) 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