Module Values.PolicySource

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

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

    Amazon Resource Name (ARN) for the policy.

    *)
  2. defaultVersion : PolicyVersionId.t option;
    (*

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

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

    The type of policy.

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

    Name of the policy.

    *)
}
Sourceval make : ?arn:??? -> ?defaultVersion:??? -> ?policyType:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PolicyVersionId.t | `String of UnqualifiedPolicyArn.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