Module Values.AttachedPermissionsBoundarySource

Contains information about an attached permissions boundary. An attached permissions boundary is a managed policy that has been attached to a user or role to set the permissions boundary. For more information about permissions boundaries, see Permissions boundaries for IAM identities in the IAM User Guide.

Sourcetype nonrec t = {
  1. permissionsBoundaryType : PermissionsBoundaryAttachmentType.t option;
    (*

    The permissions boundary usage type that indicates what type of IAM resource is used as the permissions boundary for an entity. This data type can only have a value of Policy.

    *)
  2. permissionsBoundaryArn : ArnType.t option;
    (*

    The ARN of the policy used to set the permissions boundary for the user or role.

    *)
}
Sourceval make : ?permissionsBoundaryType:??? -> ?permissionsBoundaryArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ArnType.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