Get Environment Profile
datazone_get_environment_profile | R Documentation |
Gets an evinronment profile in Amazon DataZone¶
Description¶
Gets an evinronment profile in Amazon DataZone.
Usage¶
datazone_get_environment_profile(domainIdentifier, identifier)
Arguments¶
domainIdentifier |
[required] The ID of the Amazon DataZone domain in which this environment profile exists. |
identifier |
[required] The ID of the environment profile. |
Value¶
A list with the following syntax:
list(
awsAccountId = "string",
awsAccountRegion = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
description = "string",
domainId = "string",
environmentBlueprintId = "string",
id = "string",
name = "string",
projectId = "string",
updatedAt = as.POSIXct(
"2015-01-01"
),
userParameters = list(
list(
defaultValue = "string",
description = "string",
fieldType = "string",
isEditable = TRUE|FALSE,
isOptional = TRUE|FALSE,
keyName = "string"
)
)
)
Request syntax¶
svc$get_environment_profile(
domainIdentifier = "string",
identifier = "string"
)