Module Values_1.ParameterInlinePolicySource

One or more policies assigned to a parameter.

Sourcetype nonrec t = {
  1. policyText : Values_0.String_.t option;
    (*

    The JSON text of the policy.

    *)
  2. policyType : Values_0.String_.t option;
    (*

    The type of policy. Parameter Store, a tool in Amazon Web Services Systems Manager, supports the following policy types: Expiration, ExpirationNotification, and NoChangeNotification.

    *)
  3. policyStatus : Values_0.String_.t option;
    (*

    The status of the policy. Policies report the following statuses: Pending (the policy hasn't been enforced or applied yet), Finished (the policy was applied), Failed (the policy wasn't applied), or InProgress (the policy is being applied now).

    *)
}
Sourceval make : ?policyText:??? -> ?policyType:??? -> ?policyStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.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