AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Represents the output of a CreateCustomActionType operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.CodePipeline.Model.CreateCustomActionTypeResponse

Namespace: Amazon.CodePipeline.Model
Assembly: AWSSDK.CodePipeline.dll
Version: 3.x.y.z

Syntax

C#
public class CreateCustomActionTypeResponse : AmazonWebServiceResponse

The CreateCustomActionTypeResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ActionType Amazon.CodePipeline.Model.ActionType

Gets and sets the property ActionType.

Returns information about the details of an action type.

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Tags System.Collections.Generic.List<Amazon.CodePipeline.Model.Tag>

Gets and sets the property Tags.

Specifies the tags applied to the custom action.

Examples

This example creates a build custom action for AWS CodePipeline for a Jenkins build project. For more information about the requirements for creating a custom action, including the structure of the JSON file commonly used to help create custom actions, see Create a Custom Action in the AWS CodePipeline User Guide. For a walkthrough of creating a custom action in a pipeline, follow the Four-Stage Pipeline Tutorial.

Create a custom action


var client = new AmazonCodePipelineClient();
var response = client.CreateCustomActionType(new CreateCustomActionTypeRequest 
{
    Version = "1", // A new custom action always has a version of 1. This is required.
    Category = "Build",
    ConfigurationProperties = new List<ActionConfigurationProperty> {
        new ActionConfigurationProperty {
            Name = "MyJenkinsExampleBuildProject",
            Type = "String",
            Required = true,
            Key = true,
            Description = "The name of the build project must be provided when this action is added to the pipeline.",
            Queryable = false,
            Secret = false
        }
    }, // The text in description will be displayed to your users, and can contain a maximum of 2048 characters. The value for name in configurationProperties is the name of the project, if any.  In this example, this is the name of the build project on the Jenkins server
    InputArtifactDetails = new ArtifactDetails {
        MaximumCount = 1,
        MinimumCount = 0
    }, // This is the minimum and maximum number of artifacts allowed as inputs for the action. For more information about input and output artifacts, see Pipeline Structure Reference in the AWS CodePipeline User Guide.
    OutputArtifactDetails = new ArtifactDetails {
        MaximumCount = 1,
        MinimumCount = 0
    }, // This is the minimum and maximum number of artifacts allowed as outputs for the action. For more information about input and output artifacts, see Pipeline Structure Reference in the AWS CodePipeline User Guide.
    Provider = "MyBuild-ProviderName", // In this example, this is the name given to the provider field when configuring the AWS CodePipeline Plugin for Jenkins. For more information, see the Four-Stage Pipeline Tutorial in the AWS CodePipeline User Guide.
    Settings = new ActionTypeSettings {
        EntityUrlTemplate = "https://192.0.2.4/job/{Config:ProjectName}/",
        ExecutionUrlTemplate = "https://192.0.2.4/job/{Config:ProjectName}/lastSuccessfulBuild/{ExternalExecutionId}/",
        RevisionUrlTemplate = "none"
    } // entityUrlTemplate is the static link that provides information about the service provider for the action. In the example, the build system includes a static link to the Jenkins build project at the specific server address.  Similarly, executionUrlTemplate is the dynamic link that will be updated with information about the current or most recent run of the action.
});

ActionType actionType = response.ActionType;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5