Skip to content

Update Domain

datazone_update_domain R Documentation

Updates a Amazon DataZone domain

Description

Updates a Amazon DataZone domain.

Usage

datazone_update_domain(identifier, description, singleSignOn,
  domainExecutionRole, serviceRole, name, clientToken)

Arguments

identifier

[required] The ID of the Amazon Web Services domain that is to be updated.

description

The description to be updated as part of the update_domain action.

singleSignOn

The single sign-on option to be updated as part of the update_domain action.

domainExecutionRole

The domain execution role to be updated as part of the update_domain action.

serviceRole

The service role of the domain.

name

The name to be updated as part of the update_domain action.

clientToken

A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

Value

A list with the following syntax:

list(
  id = "string",
  rootDomainUnitId = "string",
  description = "string",
  singleSignOn = list(
    type = "IAM_IDC"|"DISABLED",
    userAssignment = "AUTOMATIC"|"MANUAL",
    idcInstanceArn = "string"
  ),
  domainExecutionRole = "string",
  serviceRole = "string",
  name = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$update_domain(
  identifier = "string",
  description = "string",
  singleSignOn = list(
    type = "IAM_IDC"|"DISABLED",
    userAssignment = "AUTOMATIC"|"MANUAL",
    idcInstanceArn = "string"
  ),
  domainExecutionRole = "string",
  serviceRole = "string",
  name = "string",
  clientToken = "string"
)