Module Values.AttachedManagedPolicySource

A structure that stores a list of managed policy ARNs that describe the associated Amazon Web Services managed policy.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the Amazon Web Services managed policy.

    *)
  2. arn : ManagedPolicyArn.t option;
    (*

    The ARN of the Amazon Web Services managed policy. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.

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