Updates an action type that was created with any supported integration model, where
the action type is to be used by customers of the action type provider. Use a JSON file
with the action definition and UpdateActionType to provide the full
structure.
example
Use a bare-bones client and the command you need to make an API call.
Updates an action type that was created with any supported integration model, where the action type is to be used by customers of the action type provider. Use a JSON file with the action definition and
UpdateActionType
to provide the full structure.Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, UpdateActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, UpdateActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new UpdateActionTypeCommand(input); const response = await client.send(command);
UpdateActionTypeCommandInput for command's
input
shape.UpdateActionTypeCommandOutput for command's
response
shape.config for CodePipelineClient's
config
shape.