Skip to content

Update User Hierarchy Structure

connect_update_user_hierarchy_structure R Documentation

Updates the user hierarchy structure: add, remove, and rename user hierarchy levels

Description

Updates the user hierarchy structure: add, remove, and rename user hierarchy levels.

Usage

connect_update_user_hierarchy_structure(HierarchyStructure, InstanceId)

Arguments

HierarchyStructure

[required] The hierarchy levels to update.

InstanceId

[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

Value

An empty list.

Request syntax

svc$update_user_hierarchy_structure(
  HierarchyStructure = list(
    LevelOne = list(
      Name = "string"
    ),
    LevelTwo = list(
      Name = "string"
    ),
    LevelThree = list(
      Name = "string"
    ),
    LevelFour = list(
      Name = "string"
    ),
    LevelFive = list(
      Name = "string"
    )
  ),
  InstanceId = "string"
)