Skip to content

Update Environment Blueprint

datazone_update_environment_blueprint R Documentation

Updates an environment blueprint in Amazon DataZone

Description

Updates an environment blueprint in Amazon DataZone.

Usage

datazone_update_environment_blueprint(domainIdentifier, identifier,
  description, provisioningProperties, userParameters)

Arguments

domainIdentifier

[required] The identifier of the Amazon DataZone domain in which an environment blueprint is to be updated.

identifier

[required] The identifier of the environment blueprint to be updated.

description

The description to be updated as part of the update_environment_blueprint action.

provisioningProperties

The provisioning properties to be updated as part of the update_environment_blueprint action.

userParameters

The user parameters to be updated as part of the update_environment_blueprint action.

Value

A list with the following syntax:

list(
  id = "string",
  name = "string",
  description = "string",
  provider = "string",
  provisioningProperties = list(
    cloudFormation = list(
      templateUrl = "string"
    )
  ),
  deploymentProperties = list(
    startTimeoutMinutes = 123,
    endTimeoutMinutes = 123
  ),
  userParameters = list(
    list(
      keyName = "string",
      description = "string",
      fieldType = "string",
      defaultValue = "string",
      isEditable = TRUE|FALSE,
      isOptional = TRUE|FALSE,
      isUpdateSupported = TRUE|FALSE
    )
  ),
  glossaryTerms = list(
    "string"
  ),
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$update_environment_blueprint(
  domainIdentifier = "string",
  identifier = "string",
  description = "string",
  provisioningProperties = list(
    cloudFormation = list(
      templateUrl = "string"
    )
  ),
  userParameters = list(
    list(
      keyName = "string",
      description = "string",
      fieldType = "string",
      defaultValue = "string",
      isEditable = TRUE|FALSE,
      isOptional = TRUE|FALSE,
      isUpdateSupported = TRUE|FALSE
    )
  )
)