Class TriggerFunction.Builder

java.lang.Object
software.amazon.awscdk.triggers.TriggerFunction.Builder
All Implemented Interfaces:
software.amazon.jsii.Builder<TriggerFunction>
Enclosing class:
TriggerFunction

@Stability(Stable) public static final class TriggerFunction.Builder extends Object implements software.amazon.jsii.Builder<TriggerFunction>
A fluent builder for TriggerFunction.
  • Method Details

    • create

      @Stability(Stable) public static TriggerFunction.Builder create(software.constructs.Construct scope, String id)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      Returns:
      a new instance of TriggerFunction.Builder.
    • maxEventAge

      @Stability(Stable) public TriggerFunction.Builder maxEventAge(Duration maxEventAge)
      The maximum age of a request that Lambda sends to a function for processing.

      Minimum: 60 seconds Maximum: 6 hours

      Default: Duration.hours(6)

      Parameters:
      maxEventAge - The maximum age of a request that Lambda sends to a function for processing. This parameter is required.
      Returns:
      this
    • onFailure

      @Stability(Stable) public TriggerFunction.Builder onFailure(IDestination onFailure)
      The destination for failed invocations.

      Default: - no destination

      Parameters:
      onFailure - The destination for failed invocations. This parameter is required.
      Returns:
      this
    • onSuccess

      @Stability(Stable) public TriggerFunction.Builder onSuccess(IDestination onSuccess)
      The destination for successful invocations.

      Default: - no destination

      Parameters:
      onSuccess - The destination for successful invocations. This parameter is required.
      Returns:
      this
    • retryAttempts

      @Stability(Stable) public TriggerFunction.Builder retryAttempts(Number retryAttempts)
      The maximum number of times to retry when the function returns an error.

      Minimum: 0 Maximum: 2

      Default: 2

      Parameters:
      retryAttempts - The maximum number of times to retry when the function returns an error. This parameter is required.
      Returns:
      this
    • allowAllOutbound

      @Stability(Stable) public TriggerFunction.Builder allowAllOutbound(Boolean allowAllOutbound)
      Whether to allow the Lambda to send all network traffic.

      If set to false, you must individually add traffic rules to allow the Lambda to connect to network targets.

      Default: true

      Parameters:
      allowAllOutbound - Whether to allow the Lambda to send all network traffic. This parameter is required.
      Returns:
      this
    • allowPublicSubnet

      @Stability(Stable) public TriggerFunction.Builder allowPublicSubnet(Boolean allowPublicSubnet)
      Lambda Functions in a public subnet can NOT access the internet.

      Use this property to acknowledge this limitation and still place the function in a public subnet.

      Default: false

      Parameters:
      allowPublicSubnet - Lambda Functions in a public subnet can NOT access the internet. This parameter is required.
      Returns:
      this
      See Also:
    • architecture

      @Stability(Stable) public TriggerFunction.Builder architecture(Architecture architecture)
      The system architectures compatible with this lambda function.

      Default: Architecture.X86_64

      Parameters:
      architecture - The system architectures compatible with this lambda function. This parameter is required.
      Returns:
      this
    • architectures

      @Stability(Deprecated) @Deprecated public TriggerFunction.Builder architectures(List<? extends Architecture> architectures)
      Deprecated.
      use architecture
      (deprecated) DEPRECATED.

      Default: [Architecture.X86_64]

      Parameters:
      architectures - DEPRECATED. This parameter is required.
      Returns:
      this
    • codeSigningConfig

      @Stability(Stable) public TriggerFunction.Builder codeSigningConfig(ICodeSigningConfig codeSigningConfig)
      Code signing config associated with this function.

      Default: - Not Sign the Code

      Parameters:
      codeSigningConfig - Code signing config associated with this function. This parameter is required.
      Returns:
      this
    • currentVersionOptions

      @Stability(Stable) public TriggerFunction.Builder currentVersionOptions(VersionOptions currentVersionOptions)
      Options for the lambda.Version resource automatically created by the fn.currentVersion method.

      Default: - default options as described in `VersionOptions`

      Parameters:
      currentVersionOptions - Options for the lambda.Version resource automatically created by the fn.currentVersion method. This parameter is required.
      Returns:
      this
    • deadLetterQueue

      @Stability(Stable) public TriggerFunction.Builder deadLetterQueue(IQueue deadLetterQueue)
      The SQS queue to use if DLQ is enabled.

      If SNS topic is desired, specify deadLetterTopic property instead.

      Default: - SQS queue with 14 day retention period if `deadLetterQueueEnabled` is `true`

      Parameters:
      deadLetterQueue - The SQS queue to use if DLQ is enabled. This parameter is required.
      Returns:
      this
    • deadLetterQueueEnabled

      @Stability(Stable) public TriggerFunction.Builder deadLetterQueueEnabled(Boolean deadLetterQueueEnabled)
      Enabled DLQ.

      If deadLetterQueue is undefined, an SQS queue with default options will be defined for your Function.

      Default: - false unless `deadLetterQueue` is set, which implies DLQ is enabled.

      Parameters:
      deadLetterQueueEnabled - Enabled DLQ. This parameter is required.
      Returns:
      this
    • deadLetterTopic

      @Stability(Stable) public TriggerFunction.Builder deadLetterTopic(ITopic deadLetterTopic)
      The SNS topic to use as a DLQ.

      Note that if deadLetterQueueEnabled is set to true, an SQS queue will be created rather than an SNS topic. Using an SNS topic as a DLQ requires this property to be set explicitly.

      Default: - no SNS topic

      Parameters:
      deadLetterTopic - The SNS topic to use as a DLQ. This parameter is required.
      Returns:
      this
    • description

      @Stability(Stable) public TriggerFunction.Builder description(String description)
      A description of the function.

      Default: - No description.

      Parameters:
      description - A description of the function. This parameter is required.
      Returns:
      this
    • environment

      @Stability(Stable) public TriggerFunction.Builder environment(Map<String,String> environment)
      Key-value pairs that Lambda caches and makes available for your Lambda functions.

      Use environment variables to apply configuration changes, such as test and production environment configurations, without changing your Lambda function source code.

      Default: - No environment variables.

      Parameters:
      environment - Key-value pairs that Lambda caches and makes available for your Lambda functions. This parameter is required.
      Returns:
      this
    • environmentEncryption

      @Stability(Stable) public TriggerFunction.Builder environmentEncryption(IKey environmentEncryption)
      The AWS KMS key that's used to encrypt your function's environment variables.

      Default: - AWS Lambda creates and uses an AWS managed customer master key (CMK).

      Parameters:
      environmentEncryption - The AWS KMS key that's used to encrypt your function's environment variables. This parameter is required.
      Returns:
      this
    • ephemeralStorageSize

      @Stability(Stable) public TriggerFunction.Builder ephemeralStorageSize(Size ephemeralStorageSize)
      The size of the function’s /tmp directory in MiB.

      Default: 512 MiB

      Parameters:
      ephemeralStorageSize - The size of the function’s /tmp directory in MiB. This parameter is required.
      Returns:
      this
    • events

      @Stability(Stable) public TriggerFunction.Builder events(List<? extends IEventSource> events)
      Event sources for this function.

      You can also add event sources using addEventSource.

      Default: - No event sources.

      Parameters:
      events - Event sources for this function. This parameter is required.
      Returns:
      this
    • filesystem

      @Stability(Stable) public TriggerFunction.Builder filesystem(FileSystem filesystem)
      The filesystem configuration for the lambda function.

      Default: - will not mount any filesystem

      Parameters:
      filesystem - The filesystem configuration for the lambda function. This parameter is required.
      Returns:
      this
    • functionName

      @Stability(Stable) public TriggerFunction.Builder functionName(String functionName)
      A name for the function.

      Default: - AWS CloudFormation generates a unique physical ID and uses that ID for the function's name. For more information, see Name Type.

      Parameters:
      functionName - A name for the function. This parameter is required.
      Returns:
      this
    • initialPolicy

      @Stability(Stable) public TriggerFunction.Builder initialPolicy(List<? extends PolicyStatement> initialPolicy)
      Initial policy statements to add to the created Lambda Role.

      You can call addToRolePolicy to the created lambda to add statements post creation.

      Default: - No policy statements are added to the created Lambda role.

      Parameters:
      initialPolicy - Initial policy statements to add to the created Lambda Role. This parameter is required.
      Returns:
      this
    • insightsVersion

      @Stability(Stable) public TriggerFunction.Builder insightsVersion(LambdaInsightsVersion insightsVersion)
      Specify the version of CloudWatch Lambda insights to use for monitoring.

      Default: - No Lambda Insights

      Parameters:
      insightsVersion - Specify the version of CloudWatch Lambda insights to use for monitoring. This parameter is required.
      Returns:
      this
      See Also:
    • layers

      @Stability(Stable) public TriggerFunction.Builder layers(List<? extends ILayerVersion> layers)
      A list of layers to add to the function's execution environment.

      You can configure your Lambda function to pull in additional code during initialization in the form of layers. Layers are packages of libraries or other dependencies that can be used by multiple functions.

      Default: - No layers.

      Parameters:
      layers - A list of layers to add to the function's execution environment. This parameter is required.
      Returns:
      this
    • logRetention

      @Stability(Stable) public TriggerFunction.Builder logRetention(RetentionDays logRetention)
      The number of days log events are kept in CloudWatch Logs.

      When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to INFINITE.

      Default: logs.RetentionDays.INFINITE

      Parameters:
      logRetention - The number of days log events are kept in CloudWatch Logs. This parameter is required.
      Returns:
      this
    • logRetentionRetryOptions

      @Stability(Stable) public TriggerFunction.Builder logRetentionRetryOptions(LogRetentionRetryOptions logRetentionRetryOptions)
      When log retention is specified, a custom resource attempts to create the CloudWatch log group.

      These options control the retry policy when interacting with CloudWatch APIs.

      Default: - Default AWS SDK retry options.

      Parameters:
      logRetentionRetryOptions - When log retention is specified, a custom resource attempts to create the CloudWatch log group. This parameter is required.
      Returns:
      this
    • logRetentionRole

      @Stability(Stable) public TriggerFunction.Builder logRetentionRole(IRole logRetentionRole)
      The IAM role for the Lambda function associated with the custom resource that sets the retention policy.

      Default: - A new role is created.

      Parameters:
      logRetentionRole - The IAM role for the Lambda function associated with the custom resource that sets the retention policy. This parameter is required.
      Returns:
      this
    • memorySize

      @Stability(Stable) public TriggerFunction.Builder memorySize(Number memorySize)
      The amount of memory, in MB, that is allocated to your Lambda function.

      Lambda uses this value to proportionally allocate the amount of CPU power. For more information, see Resource Model in the AWS Lambda Developer Guide.

      Default: 128

      Parameters:
      memorySize - The amount of memory, in MB, that is allocated to your Lambda function. This parameter is required.
      Returns:
      this
    • profiling

      @Stability(Stable) public TriggerFunction.Builder profiling(Boolean profiling)
      Enable profiling.

      Default: - No profiling.

      Parameters:
      profiling - Enable profiling. This parameter is required.
      Returns:
      this
      See Also:
    • profilingGroup

      @Stability(Stable) public TriggerFunction.Builder profilingGroup(IProfilingGroup profilingGroup)
      Profiling Group.

      Default: - A new profiling group will be created if `profiling` is set.

      Parameters:
      profilingGroup - Profiling Group. This parameter is required.
      Returns:
      this
      See Also:
    • reservedConcurrentExecutions

      @Stability(Stable) public TriggerFunction.Builder reservedConcurrentExecutions(Number reservedConcurrentExecutions)
      The maximum of concurrent executions you want to reserve for the function.

      Default: - No specific limit - account limit.

      Parameters:
      reservedConcurrentExecutions - The maximum of concurrent executions you want to reserve for the function. This parameter is required.
      Returns:
      this
      See Also:
    • role

      @Stability(Stable) public TriggerFunction.Builder role(IRole role)
      Lambda execution role.

      This is the role that will be assumed by the function upon execution. It controls the permissions that the function will have. The Role must be assumable by the 'lambda.amazonaws.com' service principal.

      The default Role automatically has permissions granted for Lambda execution. If you provide a Role, you must add the relevant AWS managed policies yourself.

      The relevant managed policies are "service-role/AWSLambdaBasicExecutionRole" and "service-role/AWSLambdaVPCAccessExecutionRole".

      Default: - A unique role will be generated for this lambda function. Both supplied and generated roles can always be changed by calling `addToRolePolicy`.

      Parameters:
      role - Lambda execution role. This parameter is required.
      Returns:
      this
    • securityGroup

      @Stability(Deprecated) @Deprecated public TriggerFunction.Builder securityGroup(ISecurityGroup securityGroup)
      Deprecated.
      • This property is deprecated, use securityGroups instead
      (deprecated) What security group to associate with the Lambda's network interfaces. This property is being deprecated, consider using securityGroups instead.

      Only used if 'vpc' is supplied.

      Use securityGroups property instead. Function constructor will throw an error if both are specified.

      Default: - If the function is placed within a VPC and a security group is not specified, either by this or securityGroups prop, a dedicated security group will be created for this function.

      Parameters:
      securityGroup - What security group to associate with the Lambda's network interfaces. This property is being deprecated, consider using securityGroups instead. This parameter is required.
      Returns:
      this
    • securityGroups

      @Stability(Stable) public TriggerFunction.Builder securityGroups(List<? extends ISecurityGroup> securityGroups)
      The list of security groups to associate with the Lambda's network interfaces.

      Only used if 'vpc' is supplied.

      Default: - If the function is placed within a VPC and a security group is not specified, either by this or securityGroup prop, a dedicated security group will be created for this function.

      Parameters:
      securityGroups - The list of security groups to associate with the Lambda's network interfaces. This parameter is required.
      Returns:
      this
    • timeout

      @Stability(Stable) public TriggerFunction.Builder timeout(Duration timeout)
      The function execution time (in seconds) after which Lambda terminates the function.

      Because the execution time affects cost, set this value based on the function's expected execution time.

      Default: Duration.seconds(3)

      Parameters:
      timeout - The function execution time (in seconds) after which Lambda terminates the function. This parameter is required.
      Returns:
      this
    • tracing

      @Stability(Stable) public TriggerFunction.Builder tracing(Tracing tracing)
      Enable AWS X-Ray Tracing for Lambda Function.

      Default: Tracing.Disabled

      Parameters:
      tracing - Enable AWS X-Ray Tracing for Lambda Function. This parameter is required.
      Returns:
      this
    • vpc

      @Stability(Stable) public TriggerFunction.Builder vpc(IVpc vpc)
      VPC network to place Lambda network interfaces.

      Specify this if the Lambda function needs to access resources in a VPC.

      Default: - Function is not placed within a VPC.

      Parameters:
      vpc - VPC network to place Lambda network interfaces. This parameter is required.
      Returns:
      this
    • vpcSubnets

      @Stability(Stable) public TriggerFunction.Builder vpcSubnets(SubnetSelection vpcSubnets)
      Where to place the network interfaces within the VPC.

      Only used if 'vpc' is supplied. Note: internet access for Lambdas requires a NAT gateway, so picking Public subnets is not allowed.

      Default: - the Vpc default strategy if not specified

      Parameters:
      vpcSubnets - Where to place the network interfaces within the VPC. This parameter is required.
      Returns:
      this
    • code

      @Stability(Stable) public TriggerFunction.Builder code(Code code)
      The source code of your Lambda function.

      You can point to a file in an Amazon Simple Storage Service (Amazon S3) bucket or specify your source code as inline text.

      Parameters:
      code - The source code of your Lambda function. This parameter is required.
      Returns:
      this
    • handler

      @Stability(Stable) public TriggerFunction.Builder handler(String handler)
      The name of the method within your code that Lambda calls to execute your function.

      The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-features.html#gettingstarted-features-programmingmodel.

      Use Handler.FROM_IMAGE when defining a function from a Docker image.

      NOTE: If you specify your source code as inline text by specifying the ZipFile property within the Code property, specify index.function_name as the handler.

      Parameters:
      handler - The name of the method within your code that Lambda calls to execute your function. This parameter is required.
      Returns:
      this
    • runtime

      @Stability(Stable) public TriggerFunction.Builder runtime(Runtime runtime)
      The runtime environment for the Lambda function that you are uploading.

      For valid values, see the Runtime property in the AWS Lambda Developer Guide.

      Use Runtime.FROM_IMAGE when when defining a function from a Docker image.

      Parameters:
      runtime - The runtime environment for the Lambda function that you are uploading. This parameter is required.
      Returns:
      this
    • executeAfter

      @Stability(Stable) public TriggerFunction.Builder executeAfter(List<? extends software.constructs.Construct> executeAfter)
      Adds trigger dependencies. Execute this trigger only after these construct scopes have been provisioned.

      You can also use trigger.executeAfter() to add additional dependencies.

      Default: []

      Parameters:
      executeAfter - Adds trigger dependencies. Execute this trigger only after these construct scopes have been provisioned. This parameter is required.
      Returns:
      this
    • executeBefore

      @Stability(Stable) public TriggerFunction.Builder executeBefore(List<? extends software.constructs.Construct> executeBefore)
      Adds this trigger as a dependency on other constructs.

      This means that this trigger will get executed before the given construct(s).

      You can also use trigger.executeBefore() to add additional dependants.

      Default: []

      Parameters:
      executeBefore - Adds this trigger as a dependency on other constructs. This parameter is required.
      Returns:
      this
    • executeOnHandlerChange

      @Stability(Stable) public TriggerFunction.Builder executeOnHandlerChange(Boolean executeOnHandlerChange)
      Re-executes the trigger every time the handler changes.

      This implies that the trigger is associated with the currentVersion of the handler, which gets recreated every time the handler or its configuration is updated.

      Default: true

      Parameters:
      executeOnHandlerChange - Re-executes the trigger every time the handler changes. This parameter is required.
      Returns:
      this
    • build

      @Stability(Stable) public TriggerFunction build()
      Specified by:
      build in interface software.amazon.jsii.Builder<TriggerFunction>
      Returns:
      a newly built instance of TriggerFunction.