Enum RepositoryNotificationEvents
java.lang.Object
java.lang.Enum<RepositoryNotificationEvents>
software.amazon.awscdk.services.codecommit.RepositoryNotificationEvents
- All Implemented Interfaces:
Serializable
,Comparable<RepositoryNotificationEvents>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:38.263Z")
@Stability(Stable)
public enum RepositoryNotificationEvents
extends Enum<RepositoryNotificationEvents>
List of event types for AWS CodeCommit.
- 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 notifications when approval rule is overridden.Trigger notification when approval status changed.Trigger notification when a branch or tag is created.Trigger notification when a branch or tag is deleted.Trigger notification when a branch or tag is updated.Trigger notication when comment made on commit.Trigger notification when comment made on pull request.Trigger notification when pull request created.Trigger notification when pull requset is merged.Trigger notification when pull request source updated.Trigger notification when pull request status is changed. -
Method Summary
Modifier and TypeMethodDescriptionstatic RepositoryNotificationEvents
Returns the enum constant of this type with the specified name.static RepositoryNotificationEvents[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
COMMIT_COMMENT
Trigger notication when comment made on commit. -
PULL_REQUEST_COMMENT
Trigger notification when comment made on pull request. -
APPROVAL_STATUS_CHANGED
Trigger notification when approval status changed. -
APPROVAL_RULE_OVERRIDDEN
Trigger notifications when approval rule is overridden. -
PULL_REQUEST_CREATED
Trigger notification when pull request created. -
PULL_REQUEST_SOURCE_UPDATED
Trigger notification when pull request source updated. -
PULL_REQUEST_STATUS_CHANGED
Trigger notification when pull request status is changed. -
PULL_REQUEST_MERGED
Trigger notification when pull requset is merged. -
BRANCH_OR_TAG_CREATED
Trigger notification when a branch or tag is created. -
BRANCH_OR_TAG_DELETED
Trigger notification when a branch or tag is deleted. -
BRANCH_OR_TAG_UPDATED
Trigger notification when a branch or tag is updated.
-
-
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
-