CustomActionTypeArgs

data class CustomActionTypeArgs(val category: Output<String>? = null, val configurationProperties: Output<List<CustomActionTypeConfigurationPropertyArgs>>? = null, val inputArtifactDetails: Output<CustomActionTypeInputArtifactDetailsArgs>? = null, val outputArtifactDetails: Output<CustomActionTypeOutputArtifactDetailsArgs>? = null, val providerName: Output<String>? = null, val settings: Output<CustomActionTypeSettingsArgs>? = null, val tags: Output<Map<String, String>>? = null, val version: Output<String>? = null) : ConvertibleToJava<CustomActionTypeArgs>

Provides a CodeDeploy CustomActionType

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.codepipeline.CustomActionType;
import com.pulumi.aws.codepipeline.CustomActionTypeArgs;
import com.pulumi.aws.codepipeline.inputs.CustomActionTypeInputArtifactDetailsArgs;
import com.pulumi.aws.codepipeline.inputs.CustomActionTypeOutputArtifactDetailsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new CustomActionType("example", CustomActionTypeArgs.builder()
.category("Build")
.inputArtifactDetails(CustomActionTypeInputArtifactDetailsArgs.builder()
.maximumCount(1)
.minimumCount(0)
.build())
.outputArtifactDetails(CustomActionTypeOutputArtifactDetailsArgs.builder()
.maximumCount(1)
.minimumCount(0)
.build())
.providerName("example")
.version("1")
.build());
}
}

Import

CodeDeploy CustomActionType can be imported using the id, e.g.

$ pulumi import aws:codepipeline/customActionType:CustomActionType example Build:terraform:1

Constructors

Link copied to clipboard
constructor(category: Output<String>? = null, configurationProperties: Output<List<CustomActionTypeConfigurationPropertyArgs>>? = null, inputArtifactDetails: Output<CustomActionTypeInputArtifactDetailsArgs>? = null, outputArtifactDetails: Output<CustomActionTypeOutputArtifactDetailsArgs>? = null, providerName: Output<String>? = null, settings: Output<CustomActionTypeSettingsArgs>? = null, tags: Output<Map<String, String>>? = null, version: Output<String>? = null)

Properties

Link copied to clipboard
val category: Output<String>? = null

The category of the custom action. Valid values: Source, Build, Deploy, Test, Invoke, Approval

Link copied to clipboard

The configuration properties for the custom action. Max 10 items.

Link copied to clipboard

The details of the input artifact for the action.

Link copied to clipboard

The details of the output artifact of the action.

Link copied to clipboard
val providerName: Output<String>? = null

The provider of the service used in the custom action

Link copied to clipboard

The settings for an action type.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val version: Output<String>? = null

The version identifier of the custom action.

Functions

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