Module Values.PolicyStoreItemSource

Contains information about a policy store. This data type is used as a response parameter for the ListPolicyStores operation.

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

    The unique identifier of the policy store.

    *)
  2. arn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the policy store.

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

    The date and time the policy was created.

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

    The date and time the policy store was most recently updated.

    *)
  5. description : PolicyStoreDescription.t option;
    (*

    Descriptive text that you can provide to help with identification of the current policy store.

    *)
}
Sourceval make : ?policyStoreId:??? -> ?arn:??? -> ?createdDate:??? -> ?lastUpdatedDate:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PolicyStoreId.t | `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