Interface S3SourceOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
S3SourceOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-06-13T09:19:48.517Z") @Stability(Stable) public interface S3SourceOptions extends software.amazon.jsii.JsiiSerializable
Options for S3 sources.

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.services.iam.*;
 import software.amazon.awscdk.pipelines.*;
 Role role;
 S3SourceOptions s3SourceOptions = S3SourceOptions.builder()
         .actionName("actionName")
         .role(role)
         .trigger(S3Trigger.NONE)
         .build();
 
  • Method Details