PipelineActionTypeIdArgs

data class PipelineActionTypeIdArgs(val category: Output<PipelineActionTypeIdCategory>, val owner: Output<String>, val provider: Output<String>, val version: Output<String>) : ConvertibleToJava<PipelineActionTypeIdArgs>

Represents information about an action type.

Constructors

Link copied to clipboard
constructor(category: Output<PipelineActionTypeIdCategory>, owner: Output<String>, provider: Output<String>, version: Output<String>)

Properties

Link copied to clipboard

A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.

Link copied to clipboard
val owner: Output<String>

The creator of the action being called. There are three valid values for the Owner field in the action category section within your pipeline structure: AWS, ThirdParty, and Custom.

Link copied to clipboard
val provider: Output<String>

The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of CodeDeploy, which would be specified as CodeDeploy.

Link copied to clipboard
val version: Output<String>

A string that describes the action version.

Functions

Link copied to clipboard
open override fun toJava(): PipelineActionTypeIdArgs