Class CfnPipeline.ActionTypeIdProperty
Represents information about an action type.
Inheritance
Implements
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
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;
var 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.
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 .
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 .
Version
A string that describes the action version.
public string Version { get; set; }
Property Value
System.String