Uses of Class
software.amazon.awscdk.services.lambda.DockerImageFunction.Builder
Packages that use DockerImageFunction.Builder
-
Uses of DockerImageFunction.Builder in software.amazon.awscdk.services.lambda
Methods in software.amazon.awscdk.services.lambda that return DockerImageFunction.BuilderModifier and TypeMethodDescriptionDockerImageFunction.Builder.allowAllOutbound(Boolean allowAllOutbound) Whether to allow the Lambda to send all network traffic.DockerImageFunction.Builder.allowPublicSubnet(Boolean allowPublicSubnet) Lambda Functions in a public subnet can NOT access the internet.DockerImageFunction.Builder.architecture(Architecture architecture) The system architectures compatible with this lambda function.DockerImageFunction.Builder.architectures(List<? extends Architecture> architectures) Deprecated.DockerImageFunction.Builder.code(DockerImageCode code) The source code of your Lambda function.DockerImageFunction.Builder.codeSigningConfig(ICodeSigningConfig codeSigningConfig) Code signing config associated with this function.static DockerImageFunction.BuilderDockerImageFunction.Builder.currentVersionOptions(VersionOptions currentVersionOptions) Options for thelambda.Versionresource automatically created by thefn.currentVersionmethod.DockerImageFunction.Builder.deadLetterQueue(IQueue deadLetterQueue) The SQS queue to use if DLQ is enabled.DockerImageFunction.Builder.deadLetterQueueEnabled(Boolean deadLetterQueueEnabled) Enabled DLQ.DockerImageFunction.Builder.deadLetterTopic(ITopic deadLetterTopic) The SNS topic to use as a DLQ.DockerImageFunction.Builder.description(String description) A description of the function.DockerImageFunction.Builder.environment(Map<String, String> environment) Key-value pairs that Lambda caches and makes available for your Lambda functions.DockerImageFunction.Builder.environmentEncryption(IKey environmentEncryption) The AWS KMS key that's used to encrypt your function's environment variables.DockerImageFunction.Builder.ephemeralStorageSize(Size ephemeralStorageSize) The size of the function’s /tmp directory in MiB.DockerImageFunction.Builder.events(List<? extends IEventSource> events) Event sources for this function.DockerImageFunction.Builder.filesystem(FileSystem filesystem) The filesystem configuration for the lambda function.DockerImageFunction.Builder.functionName(String functionName) A name for the function.DockerImageFunction.Builder.initialPolicy(List<? extends PolicyStatement> initialPolicy) Initial policy statements to add to the created Lambda Role.DockerImageFunction.Builder.insightsVersion(LambdaInsightsVersion insightsVersion) Specify the version of CloudWatch Lambda insights to use for monitoring.DockerImageFunction.Builder.layers(List<? extends ILayerVersion> layers) A list of layers to add to the function's execution environment.DockerImageFunction.Builder.logRetention(RetentionDays logRetention) The number of days log events are kept in CloudWatch Logs.DockerImageFunction.Builder.logRetentionRetryOptions(LogRetentionRetryOptions logRetentionRetryOptions) When log retention is specified, a custom resource attempts to create the CloudWatch log group.DockerImageFunction.Builder.logRetentionRole(IRole logRetentionRole) The IAM role for the Lambda function associated with the custom resource that sets the retention policy.DockerImageFunction.Builder.maxEventAge(Duration maxEventAge) The maximum age of a request that Lambda sends to a function for processing.DockerImageFunction.Builder.memorySize(Number memorySize) The amount of memory, in MB, that is allocated to your Lambda function.DockerImageFunction.Builder.onFailure(IDestination onFailure) The destination for failed invocations.DockerImageFunction.Builder.onSuccess(IDestination onSuccess) The destination for successful invocations.Enable profiling.DockerImageFunction.Builder.profilingGroup(IProfilingGroup profilingGroup) Profiling Group.DockerImageFunction.Builder.reservedConcurrentExecutions(Number reservedConcurrentExecutions) The maximum of concurrent executions you want to reserve for the function.DockerImageFunction.Builder.retryAttempts(Number retryAttempts) The maximum number of times to retry when the function returns an error.Lambda execution role.DockerImageFunction.Builder.securityGroup(ISecurityGroup securityGroup) Deprecated.This property is deprecated, use securityGroups insteadDockerImageFunction.Builder.securityGroups(List<? extends ISecurityGroup> securityGroups) The list of security groups to associate with the Lambda's network interfaces.The function execution time (in seconds) after which Lambda terminates the function.Enable AWS X-Ray Tracing for Lambda Function.VPC network to place Lambda network interfaces.DockerImageFunction.Builder.vpcSubnets(SubnetSelection vpcSubnets) Where to place the network interfaces within the VPC.
architecture