| Package | Description |
|---|---|
| software.amazon.awscdk.services.cloudfront.experimental |
| Modifier and Type | Method and Description |
|---|---|
EdgeFunction.Builder |
EdgeFunction.Builder.allowAllOutbound(Boolean allowAllOutbound)
Whether to allow the Lambda to send all network traffic.
|
EdgeFunction.Builder |
EdgeFunction.Builder.allowPublicSubnet(Boolean allowPublicSubnet)
Lambda Functions in a public subnet can NOT access the internet.
|
EdgeFunction.Builder |
EdgeFunction.Builder.architecture(Architecture architecture)
The system architectures compatible with this lambda function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.code(Code code)
The source code of your Lambda function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.codeSigningConfig(ICodeSigningConfig codeSigningConfig)
Code signing config associated with this function.
|
static EdgeFunction.Builder |
EdgeFunction.Builder.create(software.constructs.Construct scope,
String id) |
EdgeFunction.Builder |
EdgeFunction.Builder.currentVersionOptions(VersionOptions currentVersionOptions)
Options for the `lambda.Version` resource automatically created by the `fn.currentVersion` method.
|
EdgeFunction.Builder |
EdgeFunction.Builder.deadLetterQueue(IQueue deadLetterQueue)
The SQS queue to use if DLQ is enabled.
|
EdgeFunction.Builder |
EdgeFunction.Builder.deadLetterQueueEnabled(Boolean deadLetterQueueEnabled)
Enabled DLQ.
|
EdgeFunction.Builder |
EdgeFunction.Builder.deadLetterTopic(ITopic deadLetterTopic)
The SNS topic to use as a DLQ.
|
EdgeFunction.Builder |
EdgeFunction.Builder.description(String description)
A description of the function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.environment(Map<String,String> environment)
Key-value pairs that Lambda caches and makes available for your Lambda functions.
|
EdgeFunction.Builder |
EdgeFunction.Builder.environmentEncryption(IKey environmentEncryption)
The AWS KMS key that's used to encrypt your function's environment variables.
|
EdgeFunction.Builder |
EdgeFunction.Builder.ephemeralStorageSize(Size ephemeralStorageSize)
The size of the function’s /tmp directory in MiB.
|
EdgeFunction.Builder |
EdgeFunction.Builder.events(List<? extends IEventSource> events)
Event sources for this function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.filesystem(FileSystem filesystem)
The filesystem configuration for the lambda function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.functionName(String functionName)
A name for the function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.handler(String handler)
The name of the method within your code that Lambda calls to execute your function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.initialPolicy(List<? extends PolicyStatement> initialPolicy)
Initial policy statements to add to the created Lambda Role.
|
EdgeFunction.Builder |
EdgeFunction.Builder.insightsVersion(LambdaInsightsVersion insightsVersion)
Specify the version of CloudWatch Lambda insights to use for monitoring.
|
EdgeFunction.Builder |
EdgeFunction.Builder.layers(List<? extends ILayerVersion> layers)
A list of layers to add to the function's execution environment.
|
EdgeFunction.Builder |
EdgeFunction.Builder.logRetention(RetentionDays logRetention)
The number of days log events are kept in CloudWatch Logs.
|
EdgeFunction.Builder |
EdgeFunction.Builder.logRetentionRetryOptions(LogRetentionRetryOptions logRetentionRetryOptions)
When log retention is specified, a custom resource attempts to create the CloudWatch log group.
|
EdgeFunction.Builder |
EdgeFunction.Builder.logRetentionRole(IRole logRetentionRole)
The IAM role for the Lambda function associated with the custom resource that sets the retention policy.
|
EdgeFunction.Builder |
EdgeFunction.Builder.maxEventAge(Duration maxEventAge)
The maximum age of a request that Lambda sends to a function for processing.
|
EdgeFunction.Builder |
EdgeFunction.Builder.memorySize(Number memorySize)
The amount of memory, in MB, that is allocated to your Lambda function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.onFailure(IDestination onFailure)
The destination for failed invocations.
|
EdgeFunction.Builder |
EdgeFunction.Builder.onSuccess(IDestination onSuccess)
The destination for successful invocations.
|
EdgeFunction.Builder |
EdgeFunction.Builder.profiling(Boolean profiling)
Enable profiling.
|
EdgeFunction.Builder |
EdgeFunction.Builder.profilingGroup(IProfilingGroup profilingGroup)
Profiling Group.
|
EdgeFunction.Builder |
EdgeFunction.Builder.reservedConcurrentExecutions(Number reservedConcurrentExecutions)
The maximum of concurrent executions you want to reserve for the function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.retryAttempts(Number retryAttempts)
The maximum number of times to retry when the function returns an error.
|
EdgeFunction.Builder |
EdgeFunction.Builder.role(IRole role)
Lambda execution role.
|
EdgeFunction.Builder |
EdgeFunction.Builder.runtime(Runtime runtime)
The runtime environment for the Lambda function that you are uploading.
|
EdgeFunction.Builder |
EdgeFunction.Builder.securityGroups(List<? extends ISecurityGroup> securityGroups)
The list of security groups to associate with the Lambda's network interfaces.
|
EdgeFunction.Builder |
EdgeFunction.Builder.stackId(String stackId)
The stack ID of Lambda@Edge function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.timeout(Duration timeout)
The function execution time (in seconds) after which Lambda terminates the function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.tracing(Tracing tracing)
Enable AWS X-Ray Tracing for Lambda Function.
|
EdgeFunction.Builder |
EdgeFunction.Builder.vpc(IVpc vpc)
VPC network to place Lambda network interfaces.
|
EdgeFunction.Builder |
EdgeFunction.Builder.vpcSubnets(SubnetSelection vpcSubnets)
Where to place the network interfaces within the VPC.
|
Copyright © 2022. All rights reserved.