Module Values.PolicyVersionSummarySource

Contains details for the version of a policy. Policies define what operations a team that define the permissions for team resources.

Sourcetype nonrec t = {
  1. arn : QualifiedPolicyArn.t option;
    (*

    Amazon Resource Name (ARN) for the team.

    *)
  2. policyArn : UnqualifiedPolicyArn.t option;
    (*

    Amazon Resource Name (ARN) for the policy.

    *)
  3. versionId : PolicyVersionId.t option;
    (*

    Version ID for the policy.

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

    The type of policy.

    *)
  5. isDefault : Boolean.t option;
    (*

    Determines if the specified policy is the default for the team.

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

    Name of the policy

    *)
  7. status : PolicyStatus.t option;
    (*

    Status for the policy. For example, if the policy is attachable or deprecated.

    *)
  8. creationTime : IsoTimestamp.t option;
    (*

    Timestamp when the policy was created.

    *)
  9. lastUpdatedTime : IsoTimestamp.t option;
    (*

    Timestamp when the policy was last updated.

    *)
}
Sourceval make : ?arn:??? -> ?policyArn:??? -> ?versionId:??? -> ?policyType:??? -> ?isDefault:??? -> ?name:??? -> ?status:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of PolicyVersionId.t | `String of QualifiedPolicyArn.t | `Timestamp of IsoTimestamp.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