Update Project Profile
datazone_update_project_profile | R Documentation |
Updates a project profile¶
Description¶
Updates a project profile.
Usage¶
datazone_update_project_profile(description, domainIdentifier,
domainUnitIdentifier, environmentConfigurations, identifier, name,
status)
Arguments¶
description
The description of a project profile.
domainIdentifier
[required] The ID of the domain where a project profile is to be updated.
domainUnitIdentifier
The ID of the domain unit where a project profile is to be updated.
environmentConfigurations
The environment configurations of a project profile.
identifier
[required] The ID of a project profile that is to be updated.
name
The name of a project profile.
status
The status of a project profile.
Value¶
A list with the following syntax:
list(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
description = "string",
domainId = "string",
domainUnitId = "string",
environmentConfigurations = list(
list(
awsAccount = list(
awsAccountId = "string",
awsAccountIdPath = "string"
),
awsRegion = list(
regionName = "string",
regionNamePath = "string"
),
configurationParameters = list(
parameterOverrides = list(
list(
isEditable = TRUE|FALSE,
name = "string",
value = "string"
)
),
resolvedParameters = list(
list(
isEditable = TRUE|FALSE,
name = "string",
value = "string"
)
),
ssmPath = "string"
),
deploymentMode = "ON_CREATE"|"ON_DEMAND",
deploymentOrder = 123,
description = "string",
environmentBlueprintId = "string",
id = "string",
name = "string"
)
),
id = "string",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
name = "string",
status = "ENABLED"|"DISABLED"
)
Request syntax¶
svc$update_project_profile(
description = "string",
domainIdentifier = "string",
domainUnitIdentifier = "string",
environmentConfigurations = list(
list(
awsAccount = list(
awsAccountId = "string",
awsAccountIdPath = "string"
),
awsRegion = list(
regionName = "string",
regionNamePath = "string"
),
configurationParameters = list(
parameterOverrides = list(
list(
isEditable = TRUE|FALSE,
name = "string",
value = "string"
)
),
resolvedParameters = list(
list(
isEditable = TRUE|FALSE,
name = "string",
value = "string"
)
),
ssmPath = "string"
),
deploymentMode = "ON_CREATE"|"ON_DEMAND",
deploymentOrder = 123,
description = "string",
environmentBlueprintId = "string",
id = "string",
name = "string"
)
),
identifier = "string",
name = "string",
status = "ENABLED"|"DISABLED"
)