Module Values.AutomatedReasoningPolicySummarySource

Contains summary information about an Automated Reasoning policy, including metadata and timestamps.

Sourcetype nonrec t = {
  1. policyArn : AutomatedReasoningPolicyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the policy.

    *)
  2. name : AutomatedReasoningPolicyName.t option;
    (*

    The name of the policy.

    *)
  3. description : AutomatedReasoningPolicyDescription.t option;
    (*

    The description of the policy.

    *)
  4. version : AutomatedReasoningPolicyVersion.t option;
    (*

    The version of the policy.

    *)
  5. policyId : AutomatedReasoningPolicyId.t option;
    (*

    The unique identifier of the policy.

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

    The timestamp when the policy was created.

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

    The timestamp when the policy was last updated.

    *)
}
Sourceval make : ?policyArn:??? -> ?name:??? -> ?description:??? -> ?version:??? -> ?policyId:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AutomatedReasoningPolicyArn.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