Skip to content

Update Environment Template

proton_update_environment_template R Documentation

Update an environment template

Description

Update an environment template.

Usage

proton_update_environment_template(description, displayName, name)

Arguments

description

A description of the environment template update.

displayName

The name of the environment template to update as displayed in the developer interface.

name

[required] The name of the environment template to update.

Value

A list with the following syntax:

list(
  environmentTemplate = list(
    arn = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    description = "string",
    displayName = "string",
    encryptionKey = "string",
    lastModifiedAt = as.POSIXct(
      "2015-01-01"
    ),
    name = "string",
    provisioning = "CUSTOMER_MANAGED",
    recommendedVersion = "string"
  )
)

Request syntax

svc$update_environment_template(
  description = "string",
  displayName = "string",
  name = "string"
)