@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-13T01:13:40.862Z")
public interface S3SourceOptions
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.codepipeline.actions.*; import software.amazon.awscdk.pipelines.*; S3SourceOptions s3SourceOptions = S3SourceOptions.builder() .actionName("actionName") .trigger(S3Trigger.NONE) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
S3SourceOptions.Builder
A builder for
S3SourceOptions |
static class |
S3SourceOptions.Jsii$Proxy
An implementation for
S3SourceOptions |
Modifier and Type | Method and Description |
---|---|
static S3SourceOptions.Builder |
builder() |
default java.lang.String |
getActionName()
The action name used for this source in the CodePipeline.
|
default S3Trigger |
getTrigger()
How should CodePipeline detect source changes for this Action.
|
default java.lang.String getActionName()
Default: - The bucket name
default S3Trigger getTrigger()
Note that if this is S3Trigger.EVENTS, you need to make sure to include the source Bucket in a CloudTrail Trail, as otherwise the CloudWatch Events will not be emitted.
Default: S3Trigger.POLL
https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/log-s3-data-events.html
static S3SourceOptions.Builder builder()
S3SourceOptions.Builder
of S3SourceOptions