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, serviceRole, 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
|
domainExecutionRole |
The domain execution role to be updated as part of the
|
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 |
serviceRole |
The service role of the domain. |
singleSignOn |
The single sign-on option to be updated as part of the
|
Value¶
A list with the following syntax:
list(
description = "string",
domainExecutionRole = "string",
id = "string",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
name = "string",
rootDomainUnitId = "string",
serviceRole = "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",
serviceRole = "string",
singleSignOn = list(
type = "IAM_IDC"|"DISABLED",
userAssignment = "AUTOMATIC"|"MANUAL"
)
)