@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:00:56.647Z") @Stability(value=Experimental) public enum CodeCommitTrigger extends Enum<CodeCommitTrigger>
This is the type of the {@link CodeCommitSourceAction.trigger} property.
Enum Constant and Description |
---|
EVENTS
(experimental) CodePipeline will use CloudWatch Events to be notified of changes.
|
NONE
(experimental) The Action will never detect changes - the Pipeline it's part of will only begin a run when explicitly started.
|
POLL
(experimental) 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=Experimental) public static final CodeCommitTrigger NONE
@Stability(value=Experimental) public static final CodeCommitTrigger POLL
@Stability(value=Experimental) public static final CodeCommitTrigger EVENTS
This is the default method of detecting changes.
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 © 2021. All rights reserved.