Skip to content

Update Studio

emr_update_studio R Documentation

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

Description

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

Usage

emr_update_studio(StudioId, Name, Description, SubnetIds,
  DefaultS3Location, EncryptionKeyArn)

Arguments

StudioId

[required] The ID of the Amazon EMR Studio to update.

Name

A descriptive name for the Amazon EMR Studio.

Description

A detailed description to assign to the Amazon EMR Studio.

SubnetIds

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.

DefaultS3Location

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

EncryptionKeyArn

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

Value

An empty list.

Request syntax

svc$update_studio(
  StudioId = "string",
  Name = "string",
  Description = "string",
  SubnetIds = list(
    "string"
  ),
  DefaultS3Location = "string",
  EncryptionKeyArn = "string"
)