Module Values.AssumedRoleUserSource

The identifiers for the temporary security credentials that the operation returns.

Sourcetype nonrec t = {
  1. assumedRoleId : AssumedRoleIdType.t option;
    (*

    A unique identifier that contains the role ID and the role session name of the role that is being assumed. The role ID is generated by Amazon Web Services when the role is created.

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

    The ARN of the temporary security credentials that are returned from the AssumeRole action. For more information about ARNs and how to use them in policies, see IAM Identifiers in the IAM User Guide.

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