CustomActionType

class CustomActionType : KotlinCustomResource

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

Properties

Link copied to clipboard
val arn: Output<String>

The action ARN.

Link copied to clipboard
val category: Output<String>

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
val id: Output<String>
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 owner: Output<String>

The creator of the action being called.

Link copied to clipboard
val providerName: Output<String>

The provider of the service used in the custom action

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The settings for an action type.

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

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 tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val version: Output<String>

The version identifier of the custom action.