Module Values.PolicyGrantingServiceAccessSource

Contains details about the permissions policies that are attached to the specified identity (user, group, or role). This data type is an element of the ListPoliciesGrantingServiceAccessEntry object.

Sourcetype nonrec t = {
  1. policyName : PolicyNameType.t option;
    (*

    The policy name.

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

    The policy type. For more information about these policy types, see Managed policies and inline policies in the IAM User Guide.

    *)
  3. policyArn : ArnType.t option;
  4. entityType : PolicyOwnerEntityType.t option;
    (*

    The type of entity (user or role) that used the policy to access the service to which the inline policy is attached. This field is null for managed policies. For more information about these policy types, see Managed policies and inline policies in the IAM User Guide.

    *)
  5. entityName : EntityNameType.t option;
    (*

    The name of the entity (user or role) to which the inline policy is attached. This field is null for managed policies. For more information about these policy types, see Managed policies and inline policies in the IAM User Guide.

    *)
}
Sourceval make : ?policyName:??? -> ?policyType:??? -> ?policyArn:??? -> ?entityType:??? -> ?entityName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PolicyNameType.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