Update Service Action
servicecatalog_update_service_action | R Documentation |
Updates a self-service action¶
Description¶
Updates a self-service action.
Usage¶
servicecatalog_update_service_action(Id, Name, Definition, Description,
AcceptLanguage)
Arguments¶
Id |
[required] The self-service action identifier. |
Name |
The self-service action name. |
Definition |
A map that defines the self-service action. |
Description |
The self-service action description. |
AcceptLanguage |
The language code.
|
Value¶
A list with the following syntax:
list(
ServiceActionDetail = list(
ServiceActionSummary = list(
Id = "string",
Name = "string",
Description = "string",
DefinitionType = "SSM_AUTOMATION"
),
Definition = list(
"string"
)
)
)
Request syntax¶
svc$update_service_action(
Id = "string",
Name = "string",
Definition = list(
"string"
),
Description = "string",
AcceptLanguage = "string"
)