Get Project
| datazone_get_project | R Documentation |
Gets a project in Amazon DataZone¶
Description¶
Gets a project in Amazon DataZone.
Usage¶
datazone_get_project(domainIdentifier, identifier)
Arguments¶
domainIdentifier |
[required] The ID of the Amazon DataZone domain in which the project exists. |
identifier |
[required] The ID of the project. |
Value¶
A list with the following syntax:
list(
domainId = "string",
id = "string",
name = "string",
description = "string",
projectStatus = "ACTIVE"|"DELETING"|"DELETE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"MOVING",
failureReasons = list(
list(
code = "string",
message = "string"
)
),
createdBy = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
resourceTags = list(
list(
key = "string",
value = "string",
source = "PROJECT"|"PROJECT_PROFILE"
)
),
glossaryTerms = list(
"string"
),
domainUnitId = "string",
projectProfileId = "string",
userParameters = list(
list(
environmentId = "string",
environmentResolvedAccount = list(
awsAccountId = "string",
regionName = "string",
sourceAccountPoolId = "string"
),
environmentConfigurationName = "string",
environmentParameters = list(
list(
name = "string",
value = "string"
)
)
)
),
environmentDeploymentDetails = list(
overallDeploymentStatus = "PENDING_DEPLOYMENT"|"IN_PROGRESS"|"SUCCESSFUL"|"FAILED_VALIDATION"|"FAILED_DEPLOYMENT",
environmentFailureReasons = list(
list(
list(
code = "string",
message = "string"
)
)
)
),
projectCategory = "string"
)
Request syntax¶
svc$get_project(
domainIdentifier = "string",
identifier = "string"
)