Update Environment Action
| datazone_update_environment_action | R Documentation |
Updates an environment action¶
Description¶
Updates an environment action.
Usage¶
datazone_update_environment_action(domainIdentifier,
environmentIdentifier, identifier, parameters, name, description)
Arguments¶
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. |
parameters |
The parameters of the environment action. |
name |
The name of the environment action. |
description |
The description of the environment action. |
Value¶
A list with the following syntax:
list(
domainId = "string",
environmentId = "string",
id = "string",
name = "string",
parameters = list(
awsConsoleLink = list(
uri = "string"
)
),
description = "string"
)
Request syntax¶
svc$update_environment_action(
domainIdentifier = "string",
environmentIdentifier = "string",
identifier = "string",
parameters = list(
awsConsoleLink = list(
uri = "string"
)
),
name = "string",
description = "string"
)