Show / Hide Table of Contents

Class CfnPipeline.ActionTypeIdProperty

Represents information about an action type.

Inheritance
System.Object
CfnPipeline.ActionTypeIdProperty
Implements
CfnPipeline.IActionTypeIdProperty
Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.dll
Syntax (csharp)
public class ActionTypeIdProperty : Object, CfnPipeline.IActionTypeIdProperty
Syntax (vb)
Public Class ActionTypeIdProperty
    Inherits Object
    Implements CfnPipeline.IActionTypeIdProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodePipeline;

ActionTypeIdProperty actionTypeIdProperty = new ActionTypeIdProperty {
    Category = "category",
    Owner = "owner",
    Provider = "provider",
    Version = "version"
};

Synopsis

Constructors

ActionTypeIdProperty()

Properties

Category

A category defines what kind of action can be taken in the stage, and constrains the provider type for the action.

Owner

The creator of the action being called.

Provider

The provider of the service being called by the action.

Version

A string that describes the action version.

Constructors

ActionTypeIdProperty()

public ActionTypeIdProperty()

Properties

Category

A category defines what kind of action can be taken in the stage, and constrains the provider type for the action.

public string Category { get; set; }
Property Value

System.String

Remarks

Valid categories are limited to one of the values below.

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid-category

    Owner

    The creator of the action being called.

    public string Owner { get; set; }
    Property Value

    System.String

    Remarks

    There are three valid values for the Owner field in the action category section within your pipeline structure: AWS , ThirdParty , and Custom . For more information, see Valid Action Types and Providers in CodePipeline .

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid-owner

    Provider

    The provider of the service being called by the action.

    public string Provider { get; set; }
    Property Value

    System.String

    Remarks

    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 . For more information, see Valid Action Types and Providers in CodePipeline .

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid-provider

    Version

    A string that describes the action version.

    public string Version { get; set; }
    Property Value

    System.String

    Remarks

    Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid-version

    Implements

    CfnPipeline.IActionTypeIdProperty
    Back to top Generated by DocFX