Create Environment Profile
datazone_create_environment_profile | R Documentation |
Creates an Amazon DataZone environment profile¶
Description¶
Creates an Amazon DataZone environment profile.
Usage¶
datazone_create_environment_profile(awsAccountId, awsAccountRegion,
description, domainIdentifier, environmentBlueprintIdentifier, name,
projectIdentifier, userParameters)
Arguments¶
awsAccountId |
The Amazon Web Services account in which the Amazon DataZone environment is created. |
awsAccountRegion |
The Amazon Web Services region in which this environment profile is created. |
description |
The description of this Amazon DataZone environment profile. |
domainIdentifier |
[required] The ID of the Amazon DataZone domain in which this environment profile is created. |
environmentBlueprintIdentifier |
[required] The ID of the blueprint with which this environment profile is created. |
name |
[required] The name of this Amazon DataZone environment profile. |
projectIdentifier |
[required] The identifier of the project in which to create the environment profile. |
userParameters |
The user parameters of this Amazon DataZone 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$create_environment_profile(
awsAccountId = "string",
awsAccountRegion = "string",
description = "string",
domainIdentifier = "string",
environmentBlueprintIdentifier = "string",
name = "string",
projectIdentifier = "string",
userParameters = list(
list(
name = "string",
value = "string"
)
)
)