Module Values.AccountEnforcedGuardrailOutputConfigurationSource

Account enforced guardrail output configuration.

Sourcetype nonrec t = {
  1. configId : AccountEnforcedGuardrailConfigurationId.t option;
    (*

    Unique ID for the account enforced configuration.

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

    ARN representation for the guardrail.

    *)
  3. guardrailId : GuardrailId.t option;
    (*

    Unique ID for the guardrail.

    *)
  4. inputTags : InputTags.t option;
    (*

    Whether to honor or ignore input tags at runtime.

    *)
  5. selectiveContentGuarding : SelectiveContentGuarding.t option;
    (*

    Selective content guarding controls for enforced guardrails.

    *)
  6. guardrailVersion : GuardrailNumericalVersion.t option;
    (*

    Numerical guardrail version.

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

    Timestamp.

    *)
  8. createdBy : String_.t option;
    (*

    The ARN of the role used to update the configuration.

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

    Timestamp.

    *)
  10. updatedBy : String_.t option;
    (*

    The ARN of the role used to update the configuration.

    *)
  11. owner : ConfigurationOwner.t option;
    (*

    Configuration owner type.

    *)
  12. modelEnforcement : ModelEnforcement.t option;
    (*

    Model-specific information for the enforced guardrail configuration.

    *)
}
Sourceval make : ?configId:??? -> ?guardrailArn:??? -> ?guardrailId:??? -> ?inputTags:??? -> ?selectiveContentGuarding:??? -> ?guardrailVersion:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?owner:??? -> ?modelEnforcement:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AccountEnforcedGuardrailConfigurationId.t | `Structure of (string * [> `Enum of string | `List of [> `String of IncludedModelId.t ] list ]) 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