Interface IS3SourceOptions

Options for S3 sources.

Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IS3SourceOptions
Syntax (vb)
Public Interface IS3SourceOptions
Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodePipeline.Actions;
            using Amazon.CDK.AWS.IAM;
            using Amazon.CDK.Pipelines;

            Role role;

            var s3SourceOptions = new S3SourceOptions {
                ActionName = "actionName",
                Role = role,
                Trigger = S3Trigger.NONE
            };

Synopsis

Properties

ActionName

The action name used for this source in the CodePipeline.

Role

The role that will be assumed by the pipeline prior to executing the S3Source action.

Trigger

How should CodePipeline detect source changes for this Action.

Properties

ActionName

The action name used for this source in the CodePipeline.

string? ActionName { get; }
Property Value

string

Role

The role that will be assumed by the pipeline prior to executing the S3Source action.

Property Value

IRole

Trigger

How should CodePipeline detect source changes for this Action.

S3Trigger? Trigger { get; }
Property Value

S3Trigger?