Module Values.IamActionDefinitionSource

The Identity and Access Management (IAM) action definition details.

Sourcetype nonrec t = {
  1. policyArn : PolicyArn.t;
    (*

    The Amazon Resource Name (ARN) of the policy to be attached.

    *)
  2. roles : Roles.t option;
    (*

    A list of roles to be attached. There must be at least one role.

    *)
  3. groups : Groups.t option;
    (*

    A list of groups to be attached. There must be at least one group.

    *)
  4. users : Users.t option;
    (*

    A list of users to be attached. There must be at least one user.

    *)
}
Sourceval context_ : string
Sourceval make : ?roles:??? -> ?groups:??? -> ?users:??? -> policyArn:PolicyArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Role.t ] list | `String of PolicyArn.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