@Generated(value="jsii-pacmak/1.57.0 (build f614666)", date="2022-04-22T22:36:25.829Z") @Stability(value=Stable) public interface S3SourceOptions extends software.amazon.jsii.JsiiSerializable
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 String |
getActionName()
The action name used for this source in the CodePipeline.
|
default S3Trigger |
getTrigger()
How should CodePipeline detect source changes for this Action.
|
@Stability(value=Stable) @Nullable default String getActionName()
Default: - The bucket name
@Stability(value=Stable) @Nullable 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@Stability(value=Stable) static S3SourceOptions.Builder builder()
S3SourceOptions.Builder of S3SourceOptionsCopyright © 2022. All rights reserved.