Skip to content

/AWS1/CL_EMR=>UPDATESTUDIO()

About UpdateStudio

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

Method Signature

IMPORTING

Required arguments:

iv_studioid TYPE /AWS1/EMRXMLSTRINGMAXLEN256 /AWS1/EMRXMLSTRINGMAXLEN256

The ID of the Amazon EMR Studio to update.

Optional arguments:

iv_name TYPE /AWS1/EMRXMLSTRINGMAXLEN256 /AWS1/EMRXMLSTRINGMAXLEN256

A descriptive name for the Amazon EMR Studio.

iv_description TYPE /AWS1/EMRXMLSTRINGMAXLEN256 /AWS1/EMRXMLSTRINGMAXLEN256

A detailed description to assign to the Amazon EMR Studio.

it_subnetids TYPE /AWS1/CL_EMRSUBNETIDLIST_W=>TT_SUBNETIDLIST TT_SUBNETIDLIST

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.

iv_defaults3location TYPE /AWS1/EMRXMLSTRING /AWS1/EMRXMLSTRING

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

iv_encryptionkeyarn TYPE /AWS1/EMRXMLSTRING /AWS1/EMRXMLSTRING

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

Examples

Syntax Example

This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.

lo_client->/aws1/if_emr~updatestudio(
  it_subnetids = VALUE /aws1/cl_emrsubnetidlist_w=>tt_subnetidlist(
    ( new /aws1/cl_emrsubnetidlist_w( |string| ) )
  )
  iv_defaults3location = |string|
  iv_description = |string|
  iv_encryptionkeyarn = |string|
  iv_name = |string|
  iv_studioid = |string|
).