Module Values_0.UserContextSource

Information about the user who created or modified a SageMaker resource.

Sourcetype nonrec t = {
  1. userProfileArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the user's profile.

    *)
  2. userProfileName : String_.t option;
    (*

    The name of the user's profile.

    *)
  3. domainId : String_.t option;
    (*

    The domain associated with the user.

    *)
  4. iamIdentity : IamIdentity.t option;
    (*

    The IAM Identity details associated with the user. These details are associated with model package groups, model packages, and project entities only.

    *)
}
Sourceval make : ?userProfileArn:??? -> ?userProfileName:??? -> ?domainId:??? -> ?iamIdentity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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