Module Values.AppliedGuardrailDetailsSource

Details about the specific guardrail that was applied during this assessment, including its identifier, version, ARN, origin, and ownership information.

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

    The unique ID of the guardrail that was applied.

    *)
  2. guardrailVersion : GuardrailVersion.t option;
    (*

    The version of the guardrail that was applied.

    *)
  3. guardrailArn : GuardrailArn.t option;
    (*

    The ARN of the guardrail that was applied.

    *)
  4. guardrailOrigin : GuardrailOriginList.t option;
    (*

    The origin of how the guardrail was applied. This can be either requested at the API level or enforced at the account or organization level as a default guardrail.

    *)
  5. guardrailOwnership : GuardrailOwnership.t option;
    (*

    The ownership type of the guardrail, indicating whether it is owned by the requesting account or is a cross-account guardrail shared from another AWS account.

    *)
}
Sourceval make : ?guardrailId:??? -> ?guardrailVersion:??? -> ?guardrailArn:??? -> ?guardrailOrigin:??? -> ?guardrailOwnership:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of GuardrailId.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