Module Values.UpdateStudioInputSource

Updates an Amazon EMR Studio configuration, including attributes such as name, description, and subnets.

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

    The ID of the Amazon EMR Studio to update.

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

    A descriptive name for the Amazon EMR Studio.

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

    A detailed description to assign to the Amazon EMR Studio.

    *)
  4. subnetIds : SubnetIdList.t option;
    (*

    A list of subnet IDs to associate with the Amazon EMR Studio. The list can include new subnet IDs, but must also include all of the subnet IDs previously associated with the Studio. The list order does not matter. A Studio can have a maximum of 5 subnets. The subnets must belong to the same VPC as the Studio.

    *)
  5. defaultS3Location : XmlString.t option;
    (*

    The Amazon S3 location to back up Workspaces and notebook files for the Amazon EMR Studio.

    *)
  6. encryptionKeyArn : XmlString.t option;
    (*

    The KMS key identifier (ARN) used to encrypt Amazon EMR Studio workspace and notebook files when backed up to Amazon S3.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?subnetIds:??? -> ?defaultS3Location:??? -> ?encryptionKeyArn:??? -> studioId:XmlStringMaxLen256.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of XmlStringMaxLen256.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