@Generated(value="jsii-pacmak/0.20.8 (build bd5ef4d)", date="2019-11-25T14:22:25.782Z") @Stability(value=Stable) public enum CodeCommitTrigger extends Enum<CodeCommitTrigger>
CodeCommitSourceAction.trigger property.| Enum Constant and Description |
|---|
EVENTS
CodePipeline will use CloudWatch Events to be notified of changes.
|
NONE
The Action will never detect changes - the Pipeline it's part of will only begin a run when explicitly started.
|
POLL
CodePipeline will poll the repository to detect changes.
|
| Modifier and Type | Method and Description |
|---|---|
static CodeCommitTrigger |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodeCommitTrigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final CodeCommitTrigger NONE
@Stability(value=Stable) public static final CodeCommitTrigger POLL
@Stability(value=Stable) public static final CodeCommitTrigger EVENTS
public static CodeCommitTrigger[] values()
for (CodeCommitTrigger c : CodeCommitTrigger.values()) System.out.println(c);
public static CodeCommitTrigger valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.