Module Values.BatchGetPolicyOutputItemSource

Contains information about a policy returned from a BatchGetPolicy API request.

Sourcetype nonrec t = {
  1. policyStoreId : PolicyStoreId.t option;
    (*

    The identifier of the policy store where the policy you want information about is stored.

    *)
  2. policyId : PolicyId.t option;
    (*

    The identifier of the policy you want information about.

    *)
  3. policyType : PolicyType.t option;
    (*

    The type of the policy. This is one of the following values: STATIC TEMPLATE_LINKED

    *)
  4. definition : PolicyDefinitionDetail.t option;
    (*

    The policy definition of an item in the list of policies returned.

    *)
  5. createdDate : TimestampFormat.t option;
    (*

    The date and time the policy was created.

    *)
  6. lastUpdatedDate : TimestampFormat.t option;
    (*

    The date and time the policy was most recently updated.

    *)
  7. name : PolicyName.t option;
    (*

    The name of the policy, if one was assigned when the policy was created or last updated.

    *)
}
Sourceval make : ?policyStoreId:??? -> ?policyId:??? -> ?policyType:??? -> ?definition:??? -> ?createdDate:??? -> ?lastUpdatedDate:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PolicyStoreId.t | `Structure of (string * [> `Structure of (string * [> `String of StaticPolicyDescription.t | `Structure of (string * [> `String of EntityType.t ]) list ]) list ]) list | `Timestamp of TimestampFormat.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