Module Values.StudioSummarySource

Details for an Amazon EMR Studio, including ID, Name, VPC, and Description. To fetch additional details such as subnets, IAM roles, security groups, and tags for the Studio, use the DescribeStudio API.

Sourcetype nonrec t = {
  1. studioId : XmlStringMaxLen256.t option;
    (*

    The ID of the Amazon EMR Studio.

    *)
  2. name : XmlStringMaxLen256.t option;
    (*

    The name of the Amazon EMR Studio.

    *)
  3. vpcId : XmlStringMaxLen256.t option;
    (*

    The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.

    *)
  4. description : XmlStringMaxLen256.t option;
    (*

    The detailed description of the Amazon EMR Studio.

    *)
  5. url : XmlStringMaxLen256.t option;
    (*

    The unique access URL of the Amazon EMR Studio.

    *)
  6. authMode : AuthMode.t option;
    (*

    Specifies whether the Studio authenticates users using IAM or IAM Identity Center.

    *)
  7. creationTime : Date.t option;
    (*

    The time when the Amazon EMR Studio was created.

    *)
}
Sourceval make : ?studioId:??? -> ?name:??? -> ?vpcId:??? -> ?description:??? -> ?url:??? -> ?authMode:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of XmlStringMaxLen256.t | `Timestamp of Date.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