Create Project
datazone_create_project | R Documentation |
Creates an Amazon DataZone project¶
Description¶
Creates an Amazon DataZone project.
Usage¶
datazone_create_project(description, domainIdentifier, domainUnitId,
glossaryTerms, name, projectProfileId, userParameters)
Arguments¶
description |
The description of the Amazon DataZone project. |
domainIdentifier |
[required] The ID of the Amazon DataZone domain in which this project is created. |
domainUnitId |
The ID of the domain unit. This parameter is not required and if it is not specified, then the project is created at the root domain unit level. |
glossaryTerms |
The glossary terms that can be used in this Amazon DataZone project. |
name |
[required] The name of the Amazon DataZone project. |
projectProfileId |
The ID of the project profile. |
userParameters |
The user parameters of the project. |
Value¶
A list with the following syntax:
list(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
description = "string",
domainId = "string",
domainUnitId = "string",
environmentDeploymentDetails = list(
environmentFailureReasons = list(
list(
list(
code = "string",
message = "string"
)
)
),
overallDeploymentStatus = "PENDING_DEPLOYMENT"|"IN_PROGRESS"|"SUCCESSFUL"|"FAILED_VALIDATION"|"FAILED_DEPLOYMENT"
),
failureReasons = list(
list(
code = "string",
message = "string"
)
),
glossaryTerms = list(
"string"
),
id = "string",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
name = "string",
projectProfileId = "string",
projectStatus = "ACTIVE"|"DELETING"|"DELETE_FAILED",
userParameters = list(
list(
environmentConfigurationName = "string",
environmentParameters = list(
list(
name = "string",
value = "string"
)
)
)
)
)
Request syntax¶
svc$create_project(
description = "string",
domainIdentifier = "string",
domainUnitId = "string",
glossaryTerms = list(
"string"
),
name = "string",
projectProfileId = "string",
userParameters = list(
list(
environmentConfigurationName = "string",
environmentParameters = list(
list(
name = "string",
value = "string"
)
)
)
)
)