Module Values.AIGuardrailSummarySource

The summary of the AI Guardrail.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the AI Guardrail.

    *)
  2. assistantId : Uuid.t option;
    (*

    The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.

    *)
  3. assistantArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Q in Connect assistant.

    *)
  4. aiGuardrailId : Uuid.t option;
    (*

    The identifier of the Amazon Q in Connect AI Guardrail.

    *)
  5. aiGuardrailArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the AI Guardrail.

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

    The time the AI Guardrail was last modified.

    *)
  7. visibilityStatus : VisibilityStatus.t option;
    (*

    The visibility status of the AI Guardrail.

    *)
  8. description : AIGuardrailDescription.t option;
    (*

    A description of the AI Guardrail.

    *)
  9. status : Status.t option;
    (*

    The status of the AI Guardrail.

    *)
  10. tags : Tags.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourceval make : ?name:??? -> ?assistantId:??? -> ?assistantArn:??? -> ?aiGuardrailId:??? -> ?aiGuardrailArn:??? -> ?modifiedTime:??? -> ?visibilityStatus:??? -> ?description:??? -> ?status:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.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