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(clientToken, description, domainExecutionRole,
  identifier, name, singleSignOn)

Arguments

clientToken

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

description

The description 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.

identifier

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

name

The name 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.

Value

A list with the following syntax:

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

Request syntax

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