Create Domain Unit
| datazone_create_domain_unit | R Documentation |
Creates a domain unit in Amazon DataZone¶
Description¶
Creates a domain unit in Amazon DataZone.
Usage¶
datazone_create_domain_unit(domainIdentifier, name,
parentDomainUnitIdentifier, description, clientToken)
Arguments¶
domainIdentifier |
[required] The ID of the domain where you want to crate a domain unit. |
name |
[required] The name of the domain unit. |
parentDomainUnitIdentifier |
[required] The ID of the parent domain unit. |
description |
The description of the domain unit. |
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",
domainId = "string",
name = "string",
parentDomainUnitId = "string",
description = "string",
owners = list(
list(
user = list(
userId = "string"
),
group = list(
groupId = "string"
)
)
),
ancestorDomainUnitIds = list(
"string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string"
)
Request syntax¶
svc$create_domain_unit(
domainIdentifier = "string",
name = "string",
parentDomainUnitIdentifier = "string",
description = "string",
clientToken = "string"
)