Module Values.PolicyGenerationSource

Contains details about the policy generation status and properties.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The JobId that is returned by the StartPolicyGeneration operation. The JobId can be used with GetGeneratedPolicy to retrieve the generated policies or used with CancelPolicyGeneration to cancel the policy generation request.

    *)
  2. principalArn : PrincipalArn.t option;
    (*

    The ARN of the IAM entity (user or role) for which you are generating a policy.

    *)
  3. status : JobStatus.t option;
    (*

    The status of the policy generation request.

    *)
  4. startedOn : Timestamp.t option;
    (*

    A timestamp of when the policy generation started.

    *)
  5. completedOn : Timestamp.t option;
    (*

    A timestamp of when the policy generation was completed.

    *)
}
Sourceval make : ?jobId:??? -> ?principalArn:??? -> ?status:??? -> ?startedOn:??? -> ?completedOn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobId.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