Update Environment Template Version
proton_update_environment_template_version | R Documentation |
Update a major or minor version of an environment template¶
Description¶
Update a major or minor version of an environment template.
Usage¶
proton_update_environment_template_version(description, majorVersion,
minorVersion, status, templateName)
Arguments¶
description
A description of environment template version to update.
majorVersion
[required] To update a major version of an environment template, include
major Version
.minorVersion
[required] To update a minor version of an environment template, include
minorVersion
.status
The status of the environment template minor version to update.
templateName
[required] The name of the environment template.
Value¶
A list with the following syntax:
list(
environmentTemplateVersion = list(
arn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
lastModifiedAt = as.POSIXct(
"2015-01-01"
),
majorVersion = "string",
minorVersion = "string",
recommendedMinorVersion = "string",
schema = "string",
status = "REGISTRATION_IN_PROGRESS"|"REGISTRATION_FAILED"|"DRAFT"|"PUBLISHED",
statusMessage = "string",
templateName = "string"
)
)