Enum PipelineNotificationEvents
java.lang.Object
java.lang.Enum<PipelineNotificationEvents>
software.amazon.awscdk.services.codepipeline.PipelineNotificationEvents
- All Implemented Interfaces:
Serializable
,Comparable<PipelineNotificationEvents>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:58.893Z")
@Stability(Stable)
public enum PipelineNotificationEvents
extends Enum<PipelineNotificationEvents>
The list of event types for AWS Codepipeline Pipeline.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTrigger notification when pipeline action execution canceled.Trigger notification when pipeline action execution failed.Trigger notification when pipeline action execution started.Trigger notification when pipeline action execution succeeded.Trigger notification when pipeline manual approval failed.Trigger notification when pipeline manual approval needed.Trigger notification when pipeline manual approval succeeded.Trigger notification when pipeline execution canceled.Trigger notification when pipeline execution failed.Trigger notification when pipeline execution resumed.Trigger notification when pipeline execution started.Trigger notification when pipeline execution succeeded.Trigger notification when pipeline execution superseded.Trigger notification when pipeline stage execution canceled.Trigger notification when pipeline stage execution failed.Trigger notification when pipeline stage execution resumed.Trigger notification when pipeline stage execution started.Trigger notification when pipeline stage execution succeeded. -
Method Summary
Modifier and TypeMethodDescriptionstatic PipelineNotificationEvents
Returns the enum constant of this type with the specified name.static PipelineNotificationEvents[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PIPELINE_EXECUTION_FAILED
Trigger notification when pipeline execution failed. -
PIPELINE_EXECUTION_CANCELED
Trigger notification when pipeline execution canceled. -
PIPELINE_EXECUTION_STARTED
Trigger notification when pipeline execution started. -
PIPELINE_EXECUTION_RESUMED
Trigger notification when pipeline execution resumed. -
PIPELINE_EXECUTION_SUCCEEDED
Trigger notification when pipeline execution succeeded. -
PIPELINE_EXECUTION_SUPERSEDED
Trigger notification when pipeline execution superseded. -
STAGE_EXECUTION_STARTED
Trigger notification when pipeline stage execution started. -
STAGE_EXECUTION_SUCCEEDED
Trigger notification when pipeline stage execution succeeded. -
STAGE_EXECUTION_RESUMED
Trigger notification when pipeline stage execution resumed. -
STAGE_EXECUTION_CANCELED
Trigger notification when pipeline stage execution canceled. -
STAGE_EXECUTION_FAILED
Trigger notification when pipeline stage execution failed. -
ACTION_EXECUTION_SUCCEEDED
Trigger notification when pipeline action execution succeeded. -
ACTION_EXECUTION_FAILED
Trigger notification when pipeline action execution failed. -
ACTION_EXECUTION_CANCELED
Trigger notification when pipeline action execution canceled. -
ACTION_EXECUTION_STARTED
Trigger notification when pipeline action execution started. -
MANUAL_APPROVAL_FAILED
Trigger notification when pipeline manual approval failed. -
MANUAL_APPROVAL_NEEDED
Trigger notification when pipeline manual approval needed. -
MANUAL_APPROVAL_SUCCEEDED
Trigger notification when pipeline manual approval succeeded.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-