Skip to content

Create Environment Action

datazone_create_environment_action R Documentation

Description

Creates an action for the environment, for example, creates a console link for an analytics tool that is available in this environment.

Usage

datazone_create_environment_action(description, domainIdentifier,
  environmentIdentifier, name, parameters)

Arguments

description

The description of the environment action that is being created in the environment.

domainIdentifier

[required] The ID of the Amazon DataZone domain in which the environment action is created.

environmentIdentifier

[required] The ID of the environment in which the environment action is created.

name

[required] The name of the environment action.

parameters

[required] 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$create_environment_action(
  description = "string",
  domainIdentifier = "string",
  environmentIdentifier = "string",
  name = "string",
  parameters = list(
    awsConsoleLink = list(
      uri = "string"
    )
  )
)