Skip to content

Update Environment Action

datazone_update_environment_action R Documentation

Updates an environment action

Description

Updates an environment action.

Usage

datazone_update_environment_action(description, domainIdentifier,
  environmentIdentifier, identifier, name, parameters)

Arguments

description

The description of the environment action.

domainIdentifier

[required] The domain ID of the environment action.

environmentIdentifier

[required] The environment ID of the environment action.

identifier

[required] The ID of the environment action.

name

The name of the environment action.

parameters

The parameters of the environment action.

Value

A list with the following syntax:

list(
  description = "string",
  domainId = "string",
  environmentId = "string",
  id = "string",
  name = "string",
  parameters = list(
    awsConsoleLink = list(
      uri = "string"
    )
  )
)

Request syntax

svc$update_environment_action(
  description = "string",
  domainIdentifier = "string",
  environmentIdentifier = "string",
  identifier = "string",
  name = "string",
  parameters = list(
    awsConsoleLink = list(
      uri = "string"
    )
  )
)