All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awscdk.services.lambda.go.GoFunctionProps Maven / Gradle / Ivy

There is a newer version: 1.204.0
Show newest version
package software.amazon.awscdk.services.lambda.go;

/**
 * (experimental) Properties for a GolangFunction.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.29.0 (build 41df200)", date = "2021-05-25T18:24:30.208Z")
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.lambda.go.$Module.class, fqn = "@aws-cdk/aws-lambda-go.GoFunctionProps")
@software.amazon.jsii.Jsii.Proxy(GoFunctionProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface GoFunctionProps extends software.amazon.jsii.JsiiSerializable, software.amazon.awscdk.services.lambda.FunctionOptions {

    /**
     * (experimental) The path to the folder or file that contains the main application entry point files for the project.
     * 

* This accepts either a path to a directory or file. *

* If a directory path is provided then it will assume there is a Go entry file (i.e. main.go) and * will construct the build command using the directory path. *

* For example, if you provide the entry as: *

*

     *  entry: 'my-lambda-app/cmd/api'
     * 
*

* Then the go build command would be: *

*

     *  `go build ./cmd/api`
     * 
*

* If a path to a file is provided then it will use the filepath in the build command. *

* For example, if you provide the entry as: *

*

     *  entry: 'my-lambda-app/cmd/api/main.go'
     * 
*

* Then the go build command would be: *

*

     *  `go build ./cmd/api/main.go`
     * 
*/ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @org.jetbrains.annotations.NotNull java.lang.String getEntry(); /** * (experimental) Bundling options. *

* Default: - use default bundling options */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) default @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.lambda.go.BundlingOptions getBundling() { return null; } /** * (experimental) Directory containing your go.mod file. *

* This will accept either a directory path containing a go.mod file * or a filepath to your go.mod file (i.e. path/to/go.mod). *

* This will be used as the source of the volume mounted in the Docker * container and will be the directory where it will run go build from. *

* Default: - the path is found by walking up parent directories searching for * a `go.mod` file from the location of `entry` */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) default @org.jetbrains.annotations.Nullable java.lang.String getModuleDir() { return null; } /** * (experimental) The runtime environment. *

* Only runtimes of the Golang family and provided family are supported. *

* Default: lambda.Runtime.PROVIDED_AL2 */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) default @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.lambda.Runtime getRuntime() { return null; } /** * @return a {@link Builder} of {@link GoFunctionProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) static Builder builder() { return new Builder(); } /** * A builder for {@link GoFunctionProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static final class Builder implements software.amazon.jsii.Builder { private java.lang.String entry; private software.amazon.awscdk.services.lambda.go.BundlingOptions bundling; private java.lang.String moduleDir; private software.amazon.awscdk.services.lambda.Runtime runtime; private java.lang.Boolean allowAllOutbound; private java.lang.Boolean allowPublicSubnet; private software.amazon.awscdk.services.lambda.ICodeSigningConfig codeSigningConfig; private software.amazon.awscdk.services.lambda.VersionOptions currentVersionOptions; private software.amazon.awscdk.services.sqs.IQueue deadLetterQueue; private java.lang.Boolean deadLetterQueueEnabled; private java.lang.String description; private java.util.Map environment; private software.amazon.awscdk.services.kms.IKey environmentEncryption; private java.util.List events; private software.amazon.awscdk.services.lambda.FileSystem filesystem; private java.lang.String functionName; private java.util.List initialPolicy; private java.util.List layers; private software.amazon.awscdk.services.logs.RetentionDays logRetention; private software.amazon.awscdk.services.lambda.LogRetentionRetryOptions logRetentionRetryOptions; private software.amazon.awscdk.services.iam.IRole logRetentionRole; private java.lang.Number memorySize; private java.lang.Boolean profiling; private software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup profilingGroup; private java.lang.Number reservedConcurrentExecutions; private software.amazon.awscdk.services.iam.IRole role; private software.amazon.awscdk.services.ec2.ISecurityGroup securityGroup; private java.util.List securityGroups; private software.amazon.awscdk.core.Duration timeout; private software.amazon.awscdk.services.lambda.Tracing tracing; private software.amazon.awscdk.services.ec2.IVpc vpc; private software.amazon.awscdk.services.ec2.SubnetSelection vpcSubnets; private software.amazon.awscdk.core.Duration maxEventAge; private software.amazon.awscdk.services.lambda.IDestination onFailure; private software.amazon.awscdk.services.lambda.IDestination onSuccess; private java.lang.Number retryAttempts; /** * Sets the value of {@link GoFunctionProps#getEntry} * @param entry The path to the folder or file that contains the main application entry point files for the project. This parameter is required. * This accepts either a path to a directory or file. *

* If a directory path is provided then it will assume there is a Go entry file (i.e. main.go) and * will construct the build command using the directory path. *

* For example, if you provide the entry as: *

*

         *               entry: 'my-lambda-app/cmd/api'
         *              
*

* Then the go build command would be: *

*

         *               `go build ./cmd/api`
         *              
*

* If a path to a file is provided then it will use the filepath in the build command. *

* For example, if you provide the entry as: *

*

         *               entry: 'my-lambda-app/cmd/api/main.go'
         *              
*

* Then the go build command would be: *

*

         *               `go build ./cmd/api/main.go`
         *              
* @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder entry(java.lang.String entry) { this.entry = entry; return this; } /** * Sets the value of {@link GoFunctionProps#getBundling} * @param bundling Bundling options. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder bundling(software.amazon.awscdk.services.lambda.go.BundlingOptions bundling) { this.bundling = bundling; return this; } /** * Sets the value of {@link GoFunctionProps#getModuleDir} * @param moduleDir Directory containing your go.mod file. * This will accept either a directory path containing a go.mod file * or a filepath to your go.mod file (i.e. path/to/go.mod). *

* This will be used as the source of the volume mounted in the Docker * container and will be the directory where it will run go build from. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder moduleDir(java.lang.String moduleDir) { this.moduleDir = moduleDir; return this; } /** * Sets the value of {@link GoFunctionProps#getRuntime} * @param runtime The runtime environment. * Only runtimes of the Golang family and provided family are supported. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder runtime(software.amazon.awscdk.services.lambda.Runtime runtime) { this.runtime = runtime; return this; } /** * Sets the value of {@link GoFunctionProps#getAllowAllOutbound} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder allowAllOutbound(java.lang.Boolean allowAllOutbound) { this.allowAllOutbound = allowAllOutbound; return this; } /** * Sets the value of {@link GoFunctionProps#getAllowPublicSubnet} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder allowPublicSubnet(java.lang.Boolean allowPublicSubnet) { this.allowPublicSubnet = allowPublicSubnet; return this; } /** * Sets the value of {@link GoFunctionProps#getCodeSigningConfig} * @param codeSigningConfig Code signing config associated with this function. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder codeSigningConfig(software.amazon.awscdk.services.lambda.ICodeSigningConfig codeSigningConfig) { this.codeSigningConfig = codeSigningConfig; return this; } /** * Sets the value of {@link GoFunctionProps#getCurrentVersionOptions} * @param currentVersionOptions Options for the `lambda.Version` resource automatically created by the `fn.currentVersion` method. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder currentVersionOptions(software.amazon.awscdk.services.lambda.VersionOptions currentVersionOptions) { this.currentVersionOptions = currentVersionOptions; return this; } /** * Sets the value of {@link GoFunctionProps#getDeadLetterQueue} * @param deadLetterQueue The SQS queue to use if DLQ is enabled. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder deadLetterQueue(software.amazon.awscdk.services.sqs.IQueue deadLetterQueue) { this.deadLetterQueue = deadLetterQueue; return this; } /** * Sets the value of {@link GoFunctionProps#getDeadLetterQueueEnabled} * @param deadLetterQueueEnabled Enabled DLQ. * If deadLetterQueue is undefined, * an SQS queue with default options will be defined for your Function. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder deadLetterQueueEnabled(java.lang.Boolean deadLetterQueueEnabled) { this.deadLetterQueueEnabled = deadLetterQueueEnabled; return this; } /** * Sets the value of {@link GoFunctionProps#getDescription} * @param description A description of the function. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder description(java.lang.String description) { this.description = description; return this; } /** * Sets the value of {@link GoFunctionProps#getEnvironment} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder environment(java.util.Map environment) { this.environment = environment; return this; } /** * Sets the value of {@link GoFunctionProps#getEnvironmentEncryption} * @param environmentEncryption The AWS KMS key that's used to encrypt your function's environment variables. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder environmentEncryption(software.amazon.awscdk.services.kms.IKey environmentEncryption) { this.environmentEncryption = environmentEncryption; return this; } /** * Sets the value of {@link GoFunctionProps#getEvents} * @param events Event sources for this function. * You can also add event sources using addEventSource. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder events(java.util.List events) { this.events = (java.util.List)events; return this; } /** * Sets the value of {@link GoFunctionProps#getFilesystem} * @param filesystem The filesystem configuration for the lambda function. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder filesystem(software.amazon.awscdk.services.lambda.FileSystem filesystem) { this.filesystem = filesystem; return this; } /** * Sets the value of {@link GoFunctionProps#getFunctionName} * @param functionName A name for the function. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder functionName(java.lang.String functionName) { this.functionName = functionName; return this; } /** * Sets the value of {@link GoFunctionProps#getInitialPolicy} * @param initialPolicy Initial policy statements to add to the created Lambda Role. * You can call addToRolePolicy to the created lambda to add statements post creation. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder initialPolicy(java.util.List initialPolicy) { this.initialPolicy = (java.util.List)initialPolicy; return this; } /** * Sets the value of {@link GoFunctionProps#getLayers} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder layers(java.util.List layers) { this.layers = (java.util.List)layers; return this; } /** * Sets the value of {@link GoFunctionProps#getLogRetention} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder logRetention(software.amazon.awscdk.services.logs.RetentionDays logRetention) { this.logRetention = logRetention; return this; } /** * Sets the value of {@link GoFunctionProps#getLogRetentionRetryOptions} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder logRetentionRetryOptions(software.amazon.awscdk.services.lambda.LogRetentionRetryOptions logRetentionRetryOptions) { this.logRetentionRetryOptions = logRetentionRetryOptions; return this; } /** * Sets the value of {@link GoFunctionProps#getLogRetentionRole} * @param logRetentionRole The IAM role for the Lambda function associated with the custom resource that sets the retention policy. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder logRetentionRole(software.amazon.awscdk.services.iam.IRole logRetentionRole) { this.logRetentionRole = logRetentionRole; return this; } /** * Sets the value of {@link GoFunctionProps#getMemorySize} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder memorySize(java.lang.Number memorySize) { this.memorySize = memorySize; return this; } /** * Sets the value of {@link GoFunctionProps#getProfiling} * @param profiling Enable profiling. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder profiling(java.lang.Boolean profiling) { this.profiling = profiling; return this; } /** * Sets the value of {@link GoFunctionProps#getProfilingGroup} * @param profilingGroup Profiling Group. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder profilingGroup(software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup profilingGroup) { this.profilingGroup = profilingGroup; return this; } /** * Sets the value of {@link GoFunctionProps#getReservedConcurrentExecutions} * @param reservedConcurrentExecutions The maximum of concurrent executions you want to reserve for the function. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder reservedConcurrentExecutions(java.lang.Number reservedConcurrentExecutions) { this.reservedConcurrentExecutions = reservedConcurrentExecutions; return this; } /** * Sets the value of {@link GoFunctionProps#getRole} * @param 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". * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder role(software.amazon.awscdk.services.iam.IRole role) { this.role = role; return this; } /** * Sets the value of {@link GoFunctionProps#getSecurityGroup} * @param securityGroup 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. * @return {@code this} * @deprecated - This property is deprecated, use securityGroups instead */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Deprecated) @Deprecated public Builder securityGroup(software.amazon.awscdk.services.ec2.ISecurityGroup securityGroup) { this.securityGroup = securityGroup; return this; } /** * Sets the value of {@link GoFunctionProps#getSecurityGroups} * @param securityGroups The list of security groups to associate with the Lambda's network interfaces. * Only used if 'vpc' is supplied. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @SuppressWarnings("unchecked") public Builder securityGroups(java.util.List securityGroups) { this.securityGroups = (java.util.List)securityGroups; return this; } /** * Sets the value of {@link GoFunctionProps#getTimeout} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder timeout(software.amazon.awscdk.core.Duration timeout) { this.timeout = timeout; return this; } /** * Sets the value of {@link GoFunctionProps#getTracing} * @param tracing Enable AWS X-Ray Tracing for Lambda Function. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder tracing(software.amazon.awscdk.services.lambda.Tracing tracing) { this.tracing = tracing; return this; } /** * Sets the value of {@link GoFunctionProps#getVpc} * @param vpc VPC network to place Lambda network interfaces. * Specify this if the Lambda function needs to access resources in a VPC. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder vpc(software.amazon.awscdk.services.ec2.IVpc vpc) { this.vpc = vpc; return this; } /** * Sets the value of {@link GoFunctionProps#getVpcSubnets} * @param 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. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder vpcSubnets(software.amazon.awscdk.services.ec2.SubnetSelection vpcSubnets) { this.vpcSubnets = vpcSubnets; return this; } /** * Sets the value of {@link GoFunctionProps#getMaxEventAge} * @param maxEventAge The maximum age of a request that Lambda sends to a function for processing. * Minimum: 60 seconds * Maximum: 6 hours * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder maxEventAge(software.amazon.awscdk.core.Duration maxEventAge) { this.maxEventAge = maxEventAge; return this; } /** * Sets the value of {@link GoFunctionProps#getOnFailure} * @param onFailure The destination for failed invocations. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder onFailure(software.amazon.awscdk.services.lambda.IDestination onFailure) { this.onFailure = onFailure; return this; } /** * Sets the value of {@link GoFunctionProps#getOnSuccess} * @param onSuccess The destination for successful invocations. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder onSuccess(software.amazon.awscdk.services.lambda.IDestination onSuccess) { this.onSuccess = onSuccess; return this; } /** * Sets the value of {@link GoFunctionProps#getRetryAttempts} * @param retryAttempts The maximum number of times to retry when the function returns an error. * Minimum: 0 * Maximum: 2 * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder retryAttempts(java.lang.Number retryAttempts) { this.retryAttempts = retryAttempts; return this; } /** * Builds the configured instance. * @return a new instance of {@link GoFunctionProps} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public GoFunctionProps build() { return new Jsii$Proxy(entry, bundling, moduleDir, runtime, allowAllOutbound, allowPublicSubnet, codeSigningConfig, currentVersionOptions, deadLetterQueue, deadLetterQueueEnabled, description, environment, environmentEncryption, events, filesystem, functionName, initialPolicy, layers, logRetention, logRetentionRetryOptions, logRetentionRole, memorySize, profiling, profilingGroup, reservedConcurrentExecutions, role, securityGroup, securityGroups, timeout, tracing, vpc, vpcSubnets, maxEventAge, onFailure, onSuccess, retryAttempts); } } /** * An implementation for {@link GoFunctionProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements GoFunctionProps { private final java.lang.String entry; private final software.amazon.awscdk.services.lambda.go.BundlingOptions bundling; private final java.lang.String moduleDir; private final software.amazon.awscdk.services.lambda.Runtime runtime; private final java.lang.Boolean allowAllOutbound; private final java.lang.Boolean allowPublicSubnet; private final software.amazon.awscdk.services.lambda.ICodeSigningConfig codeSigningConfig; private final software.amazon.awscdk.services.lambda.VersionOptions currentVersionOptions; private final software.amazon.awscdk.services.sqs.IQueue deadLetterQueue; private final java.lang.Boolean deadLetterQueueEnabled; private final java.lang.String description; private final java.util.Map environment; private final software.amazon.awscdk.services.kms.IKey environmentEncryption; private final java.util.List events; private final software.amazon.awscdk.services.lambda.FileSystem filesystem; private final java.lang.String functionName; private final java.util.List initialPolicy; private final java.util.List layers; private final software.amazon.awscdk.services.logs.RetentionDays logRetention; private final software.amazon.awscdk.services.lambda.LogRetentionRetryOptions logRetentionRetryOptions; private final software.amazon.awscdk.services.iam.IRole logRetentionRole; private final java.lang.Number memorySize; private final java.lang.Boolean profiling; private final software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup profilingGroup; private final java.lang.Number reservedConcurrentExecutions; private final software.amazon.awscdk.services.iam.IRole role; private final software.amazon.awscdk.services.ec2.ISecurityGroup securityGroup; private final java.util.List securityGroups; private final software.amazon.awscdk.core.Duration timeout; private final software.amazon.awscdk.services.lambda.Tracing tracing; private final software.amazon.awscdk.services.ec2.IVpc vpc; private final software.amazon.awscdk.services.ec2.SubnetSelection vpcSubnets; private final software.amazon.awscdk.core.Duration maxEventAge; private final software.amazon.awscdk.services.lambda.IDestination onFailure; private final software.amazon.awscdk.services.lambda.IDestination onSuccess; private final java.lang.Number retryAttempts; /** * Constructor that initializes the object based on values retrieved from the JsiiObject. * @param objRef Reference to the JSII managed object. */ protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) { super(objRef); this.entry = software.amazon.jsii.Kernel.get(this, "entry", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.bundling = software.amazon.jsii.Kernel.get(this, "bundling", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.go.BundlingOptions.class)); this.moduleDir = software.amazon.jsii.Kernel.get(this, "moduleDir", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.runtime = software.amazon.jsii.Kernel.get(this, "runtime", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.Runtime.class)); this.allowAllOutbound = software.amazon.jsii.Kernel.get(this, "allowAllOutbound", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class)); this.allowPublicSubnet = software.amazon.jsii.Kernel.get(this, "allowPublicSubnet", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class)); this.codeSigningConfig = software.amazon.jsii.Kernel.get(this, "codeSigningConfig", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.ICodeSigningConfig.class)); this.currentVersionOptions = software.amazon.jsii.Kernel.get(this, "currentVersionOptions", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.VersionOptions.class)); this.deadLetterQueue = software.amazon.jsii.Kernel.get(this, "deadLetterQueue", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.sqs.IQueue.class)); this.deadLetterQueueEnabled = software.amazon.jsii.Kernel.get(this, "deadLetterQueueEnabled", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class)); this.description = software.amazon.jsii.Kernel.get(this, "description", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.environment = software.amazon.jsii.Kernel.get(this, "environment", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(java.lang.String.class))); this.environmentEncryption = software.amazon.jsii.Kernel.get(this, "environmentEncryption", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.kms.IKey.class)); this.events = software.amazon.jsii.Kernel.get(this, "events", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.IEventSource.class))); this.filesystem = software.amazon.jsii.Kernel.get(this, "filesystem", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.FileSystem.class)); this.functionName = software.amazon.jsii.Kernel.get(this, "functionName", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.initialPolicy = software.amazon.jsii.Kernel.get(this, "initialPolicy", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.iam.PolicyStatement.class))); this.layers = software.amazon.jsii.Kernel.get(this, "layers", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.ILayerVersion.class))); this.logRetention = software.amazon.jsii.Kernel.get(this, "logRetention", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.logs.RetentionDays.class)); this.logRetentionRetryOptions = software.amazon.jsii.Kernel.get(this, "logRetentionRetryOptions", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.LogRetentionRetryOptions.class)); this.logRetentionRole = software.amazon.jsii.Kernel.get(this, "logRetentionRole", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.iam.IRole.class)); this.memorySize = software.amazon.jsii.Kernel.get(this, "memorySize", software.amazon.jsii.NativeType.forClass(java.lang.Number.class)); this.profiling = software.amazon.jsii.Kernel.get(this, "profiling", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class)); this.profilingGroup = software.amazon.jsii.Kernel.get(this, "profilingGroup", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup.class)); this.reservedConcurrentExecutions = software.amazon.jsii.Kernel.get(this, "reservedConcurrentExecutions", software.amazon.jsii.NativeType.forClass(java.lang.Number.class)); this.role = software.amazon.jsii.Kernel.get(this, "role", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.iam.IRole.class)); this.securityGroup = software.amazon.jsii.Kernel.get(this, "securityGroup", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ec2.ISecurityGroup.class)); this.securityGroups = software.amazon.jsii.Kernel.get(this, "securityGroups", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ec2.ISecurityGroup.class))); this.timeout = software.amazon.jsii.Kernel.get(this, "timeout", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.core.Duration.class)); this.tracing = software.amazon.jsii.Kernel.get(this, "tracing", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.Tracing.class)); this.vpc = software.amazon.jsii.Kernel.get(this, "vpc", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ec2.IVpc.class)); this.vpcSubnets = software.amazon.jsii.Kernel.get(this, "vpcSubnets", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ec2.SubnetSelection.class)); this.maxEventAge = software.amazon.jsii.Kernel.get(this, "maxEventAge", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.core.Duration.class)); this.onFailure = software.amazon.jsii.Kernel.get(this, "onFailure", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.IDestination.class)); this.onSuccess = software.amazon.jsii.Kernel.get(this, "onSuccess", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.IDestination.class)); this.retryAttempts = software.amazon.jsii.Kernel.get(this, "retryAttempts", software.amazon.jsii.NativeType.forClass(java.lang.Number.class)); } /** * Constructor that initializes the object based on literal property values passed by the {@link Builder}. */ @SuppressWarnings("unchecked") protected Jsii$Proxy(final java.lang.String entry, final software.amazon.awscdk.services.lambda.go.BundlingOptions bundling, final java.lang.String moduleDir, final software.amazon.awscdk.services.lambda.Runtime runtime, final java.lang.Boolean allowAllOutbound, final java.lang.Boolean allowPublicSubnet, final software.amazon.awscdk.services.lambda.ICodeSigningConfig codeSigningConfig, final software.amazon.awscdk.services.lambda.VersionOptions currentVersionOptions, final software.amazon.awscdk.services.sqs.IQueue deadLetterQueue, final java.lang.Boolean deadLetterQueueEnabled, final java.lang.String description, final java.util.Map environment, final software.amazon.awscdk.services.kms.IKey environmentEncryption, final java.util.List events, final software.amazon.awscdk.services.lambda.FileSystem filesystem, final java.lang.String functionName, final java.util.List initialPolicy, final java.util.List layers, final software.amazon.awscdk.services.logs.RetentionDays logRetention, final software.amazon.awscdk.services.lambda.LogRetentionRetryOptions logRetentionRetryOptions, final software.amazon.awscdk.services.iam.IRole logRetentionRole, final java.lang.Number memorySize, final java.lang.Boolean profiling, final software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup profilingGroup, final java.lang.Number reservedConcurrentExecutions, final software.amazon.awscdk.services.iam.IRole role, final software.amazon.awscdk.services.ec2.ISecurityGroup securityGroup, final java.util.List securityGroups, final software.amazon.awscdk.core.Duration timeout, final software.amazon.awscdk.services.lambda.Tracing tracing, final software.amazon.awscdk.services.ec2.IVpc vpc, final software.amazon.awscdk.services.ec2.SubnetSelection vpcSubnets, final software.amazon.awscdk.core.Duration maxEventAge, final software.amazon.awscdk.services.lambda.IDestination onFailure, final software.amazon.awscdk.services.lambda.IDestination onSuccess, final java.lang.Number retryAttempts) { super(software.amazon.jsii.JsiiObject.InitializationMode.JSII); this.entry = java.util.Objects.requireNonNull(entry, "entry is required"); this.bundling = bundling; this.moduleDir = moduleDir; this.runtime = runtime; this.allowAllOutbound = allowAllOutbound; this.allowPublicSubnet = allowPublicSubnet; this.codeSigningConfig = codeSigningConfig; this.currentVersionOptions = currentVersionOptions; this.deadLetterQueue = deadLetterQueue; this.deadLetterQueueEnabled = deadLetterQueueEnabled; this.description = description; this.environment = environment; this.environmentEncryption = environmentEncryption; this.events = (java.util.List)events; this.filesystem = filesystem; this.functionName = functionName; this.initialPolicy = (java.util.List)initialPolicy; this.layers = (java.util.List)layers; this.logRetention = logRetention; this.logRetentionRetryOptions = logRetentionRetryOptions; this.logRetentionRole = logRetentionRole; this.memorySize = memorySize; this.profiling = profiling; this.profilingGroup = profilingGroup; this.reservedConcurrentExecutions = reservedConcurrentExecutions; this.role = role; this.securityGroup = securityGroup; this.securityGroups = (java.util.List)securityGroups; this.timeout = timeout; this.tracing = tracing; this.vpc = vpc; this.vpcSubnets = vpcSubnets; this.maxEventAge = maxEventAge; this.onFailure = onFailure; this.onSuccess = onSuccess; this.retryAttempts = retryAttempts; } @Override public final java.lang.String getEntry() { return this.entry; } @Override public final software.amazon.awscdk.services.lambda.go.BundlingOptions getBundling() { return this.bundling; } @Override public final java.lang.String getModuleDir() { return this.moduleDir; } @Override public final software.amazon.awscdk.services.lambda.Runtime getRuntime() { return this.runtime; } @Override public final java.lang.Boolean getAllowAllOutbound() { return this.allowAllOutbound; } @Override public final java.lang.Boolean getAllowPublicSubnet() { return this.allowPublicSubnet; } @Override public final software.amazon.awscdk.services.lambda.ICodeSigningConfig getCodeSigningConfig() { return this.codeSigningConfig; } @Override public final software.amazon.awscdk.services.lambda.VersionOptions getCurrentVersionOptions() { return this.currentVersionOptions; } @Override public final software.amazon.awscdk.services.sqs.IQueue getDeadLetterQueue() { return this.deadLetterQueue; } @Override public final java.lang.Boolean getDeadLetterQueueEnabled() { return this.deadLetterQueueEnabled; } @Override public final java.lang.String getDescription() { return this.description; } @Override public final java.util.Map getEnvironment() { return this.environment; } @Override public final software.amazon.awscdk.services.kms.IKey getEnvironmentEncryption() { return this.environmentEncryption; } @Override public final java.util.List getEvents() { return this.events; } @Override public final software.amazon.awscdk.services.lambda.FileSystem getFilesystem() { return this.filesystem; } @Override public final java.lang.String getFunctionName() { return this.functionName; } @Override public final java.util.List getInitialPolicy() { return this.initialPolicy; } @Override public final java.util.List getLayers() { return this.layers; } @Override public final software.amazon.awscdk.services.logs.RetentionDays getLogRetention() { return this.logRetention; } @Override public final software.amazon.awscdk.services.lambda.LogRetentionRetryOptions getLogRetentionRetryOptions() { return this.logRetentionRetryOptions; } @Override public final software.amazon.awscdk.services.iam.IRole getLogRetentionRole() { return this.logRetentionRole; } @Override public final java.lang.Number getMemorySize() { return this.memorySize; } @Override public final java.lang.Boolean getProfiling() { return this.profiling; } @Override public final software.amazon.awscdk.services.codeguruprofiler.IProfilingGroup getProfilingGroup() { return this.profilingGroup; } @Override public final java.lang.Number getReservedConcurrentExecutions() { return this.reservedConcurrentExecutions; } @Override public final software.amazon.awscdk.services.iam.IRole getRole() { return this.role; } @Override public final software.amazon.awscdk.services.ec2.ISecurityGroup getSecurityGroup() { return this.securityGroup; } @Override public final java.util.List getSecurityGroups() { return this.securityGroups; } @Override public final software.amazon.awscdk.core.Duration getTimeout() { return this.timeout; } @Override public final software.amazon.awscdk.services.lambda.Tracing getTracing() { return this.tracing; } @Override public final software.amazon.awscdk.services.ec2.IVpc getVpc() { return this.vpc; } @Override public final software.amazon.awscdk.services.ec2.SubnetSelection getVpcSubnets() { return this.vpcSubnets; } @Override public final software.amazon.awscdk.core.Duration getMaxEventAge() { return this.maxEventAge; } @Override public final software.amazon.awscdk.services.lambda.IDestination getOnFailure() { return this.onFailure; } @Override public final software.amazon.awscdk.services.lambda.IDestination getOnSuccess() { return this.onSuccess; } @Override public final java.lang.Number getRetryAttempts() { return this.retryAttempts; } @Override @software.amazon.jsii.Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() { final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE; final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); data.set("entry", om.valueToTree(this.getEntry())); if (this.getBundling() != null) { data.set("bundling", om.valueToTree(this.getBundling())); } if (this.getModuleDir() != null) { data.set("moduleDir", om.valueToTree(this.getModuleDir())); } if (this.getRuntime() != null) { data.set("runtime", om.valueToTree(this.getRuntime())); } if (this.getAllowAllOutbound() != null) { data.set("allowAllOutbound", om.valueToTree(this.getAllowAllOutbound())); } if (this.getAllowPublicSubnet() != null) { data.set("allowPublicSubnet", om.valueToTree(this.getAllowPublicSubnet())); } if (this.getCodeSigningConfig() != null) { data.set("codeSigningConfig", om.valueToTree(this.getCodeSigningConfig())); } if (this.getCurrentVersionOptions() != null) { data.set("currentVersionOptions", om.valueToTree(this.getCurrentVersionOptions())); } if (this.getDeadLetterQueue() != null) { data.set("deadLetterQueue", om.valueToTree(this.getDeadLetterQueue())); } if (this.getDeadLetterQueueEnabled() != null) { data.set("deadLetterQueueEnabled", om.valueToTree(this.getDeadLetterQueueEnabled())); } if (this.getDescription() != null) { data.set("description", om.valueToTree(this.getDescription())); } if (this.getEnvironment() != null) { data.set("environment", om.valueToTree(this.getEnvironment())); } if (this.getEnvironmentEncryption() != null) { data.set("environmentEncryption", om.valueToTree(this.getEnvironmentEncryption())); } if (this.getEvents() != null) { data.set("events", om.valueToTree(this.getEvents())); } if (this.getFilesystem() != null) { data.set("filesystem", om.valueToTree(this.getFilesystem())); } if (this.getFunctionName() != null) { data.set("functionName", om.valueToTree(this.getFunctionName())); } if (this.getInitialPolicy() != null) { data.set("initialPolicy", om.valueToTree(this.getInitialPolicy())); } if (this.getLayers() != null) { data.set("layers", om.valueToTree(this.getLayers())); } if (this.getLogRetention() != null) { data.set("logRetention", om.valueToTree(this.getLogRetention())); } if (this.getLogRetentionRetryOptions() != null) { data.set("logRetentionRetryOptions", om.valueToTree(this.getLogRetentionRetryOptions())); } if (this.getLogRetentionRole() != null) { data.set("logRetentionRole", om.valueToTree(this.getLogRetentionRole())); } if (this.getMemorySize() != null) { data.set("memorySize", om.valueToTree(this.getMemorySize())); } if (this.getProfiling() != null) { data.set("profiling", om.valueToTree(this.getProfiling())); } if (this.getProfilingGroup() != null) { data.set("profilingGroup", om.valueToTree(this.getProfilingGroup())); } if (this.getReservedConcurrentExecutions() != null) { data.set("reservedConcurrentExecutions", om.valueToTree(this.getReservedConcurrentExecutions())); } if (this.getRole() != null) { data.set("role", om.valueToTree(this.getRole())); } if (this.getSecurityGroup() != null) { data.set("securityGroup", om.valueToTree(this.getSecurityGroup())); } if (this.getSecurityGroups() != null) { data.set("securityGroups", om.valueToTree(this.getSecurityGroups())); } if (this.getTimeout() != null) { data.set("timeout", om.valueToTree(this.getTimeout())); } if (this.getTracing() != null) { data.set("tracing", om.valueToTree(this.getTracing())); } if (this.getVpc() != null) { data.set("vpc", om.valueToTree(this.getVpc())); } if (this.getVpcSubnets() != null) { data.set("vpcSubnets", om.valueToTree(this.getVpcSubnets())); } if (this.getMaxEventAge() != null) { data.set("maxEventAge", om.valueToTree(this.getMaxEventAge())); } if (this.getOnFailure() != null) { data.set("onFailure", om.valueToTree(this.getOnFailure())); } if (this.getOnSuccess() != null) { data.set("onSuccess", om.valueToTree(this.getOnSuccess())); } if (this.getRetryAttempts() != null) { data.set("retryAttempts", om.valueToTree(this.getRetryAttempts())); } final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); struct.set("fqn", om.valueToTree("@aws-cdk/aws-lambda-go.GoFunctionProps")); struct.set("data", data); final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); obj.set("$jsii.struct", struct); return obj; } @Override public final boolean equals(final Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; GoFunctionProps.Jsii$Proxy that = (GoFunctionProps.Jsii$Proxy) o; if (!entry.equals(that.entry)) return false; if (this.bundling != null ? !this.bundling.equals(that.bundling) : that.bundling != null) return false; if (this.moduleDir != null ? !this.moduleDir.equals(that.moduleDir) : that.moduleDir != null) return false; if (this.runtime != null ? !this.runtime.equals(that.runtime) : that.runtime != null) return false; if (this.allowAllOutbound != null ? !this.allowAllOutbound.equals(that.allowAllOutbound) : that.allowAllOutbound != null) return false; if (this.allowPublicSubnet != null ? !this.allowPublicSubnet.equals(that.allowPublicSubnet) : that.allowPublicSubnet != null) return false; if (this.codeSigningConfig != null ? !this.codeSigningConfig.equals(that.codeSigningConfig) : that.codeSigningConfig != null) return false; if (this.currentVersionOptions != null ? !this.currentVersionOptions.equals(that.currentVersionOptions) : that.currentVersionOptions != null) return false; if (this.deadLetterQueue != null ? !this.deadLetterQueue.equals(that.deadLetterQueue) : that.deadLetterQueue != null) return false; if (this.deadLetterQueueEnabled != null ? !this.deadLetterQueueEnabled.equals(that.deadLetterQueueEnabled) : that.deadLetterQueueEnabled != null) return false; if (this.description != null ? !this.description.equals(that.description) : that.description != null) return false; if (this.environment != null ? !this.environment.equals(that.environment) : that.environment != null) return false; if (this.environmentEncryption != null ? !this.environmentEncryption.equals(that.environmentEncryption) : that.environmentEncryption != null) return false; if (this.events != null ? !this.events.equals(that.events) : that.events != null) return false; if (this.filesystem != null ? !this.filesystem.equals(that.filesystem) : that.filesystem != null) return false; if (this.functionName != null ? !this.functionName.equals(that.functionName) : that.functionName != null) return false; if (this.initialPolicy != null ? !this.initialPolicy.equals(that.initialPolicy) : that.initialPolicy != null) return false; if (this.layers != null ? !this.layers.equals(that.layers) : that.layers != null) return false; if (this.logRetention != null ? !this.logRetention.equals(that.logRetention) : that.logRetention != null) return false; if (this.logRetentionRetryOptions != null ? !this.logRetentionRetryOptions.equals(that.logRetentionRetryOptions) : that.logRetentionRetryOptions != null) return false; if (this.logRetentionRole != null ? !this.logRetentionRole.equals(that.logRetentionRole) : that.logRetentionRole != null) return false; if (this.memorySize != null ? !this.memorySize.equals(that.memorySize) : that.memorySize != null) return false; if (this.profiling != null ? !this.profiling.equals(that.profiling) : that.profiling != null) return false; if (this.profilingGroup != null ? !this.profilingGroup.equals(that.profilingGroup) : that.profilingGroup != null) return false; if (this.reservedConcurrentExecutions != null ? !this.reservedConcurrentExecutions.equals(that.reservedConcurrentExecutions) : that.reservedConcurrentExecutions != null) return false; if (this.role != null ? !this.role.equals(that.role) : that.role != null) return false; if (this.securityGroup != null ? !this.securityGroup.equals(that.securityGroup) : that.securityGroup != null) return false; if (this.securityGroups != null ? !this.securityGroups.equals(that.securityGroups) : that.securityGroups != null) return false; if (this.timeout != null ? !this.timeout.equals(that.timeout) : that.timeout != null) return false; if (this.tracing != null ? !this.tracing.equals(that.tracing) : that.tracing != null) return false; if (this.vpc != null ? !this.vpc.equals(that.vpc) : that.vpc != null) return false; if (this.vpcSubnets != null ? !this.vpcSubnets.equals(that.vpcSubnets) : that.vpcSubnets != null) return false; if (this.maxEventAge != null ? !this.maxEventAge.equals(that.maxEventAge) : that.maxEventAge != null) return false; if (this.onFailure != null ? !this.onFailure.equals(that.onFailure) : that.onFailure != null) return false; if (this.onSuccess != null ? !this.onSuccess.equals(that.onSuccess) : that.onSuccess != null) return false; return this.retryAttempts != null ? this.retryAttempts.equals(that.retryAttempts) : that.retryAttempts == null; } @Override public final int hashCode() { int result = this.entry.hashCode(); result = 31 * result + (this.bundling != null ? this.bundling.hashCode() : 0); result = 31 * result + (this.moduleDir != null ? this.moduleDir.hashCode() : 0); result = 31 * result + (this.runtime != null ? this.runtime.hashCode() : 0); result = 31 * result + (this.allowAllOutbound != null ? this.allowAllOutbound.hashCode() : 0); result = 31 * result + (this.allowPublicSubnet != null ? this.allowPublicSubnet.hashCode() : 0); result = 31 * result + (this.codeSigningConfig != null ? this.codeSigningConfig.hashCode() : 0); result = 31 * result + (this.currentVersionOptions != null ? this.currentVersionOptions.hashCode() : 0); result = 31 * result + (this.deadLetterQueue != null ? this.deadLetterQueue.hashCode() : 0); result = 31 * result + (this.deadLetterQueueEnabled != null ? this.deadLetterQueueEnabled.hashCode() : 0); result = 31 * result + (this.description != null ? this.description.hashCode() : 0); result = 31 * result + (this.environment != null ? this.environment.hashCode() : 0); result = 31 * result + (this.environmentEncryption != null ? this.environmentEncryption.hashCode() : 0); result = 31 * result + (this.events != null ? this.events.hashCode() : 0); result = 31 * result + (this.filesystem != null ? this.filesystem.hashCode() : 0); result = 31 * result + (this.functionName != null ? this.functionName.hashCode() : 0); result = 31 * result + (this.initialPolicy != null ? this.initialPolicy.hashCode() : 0); result = 31 * result + (this.layers != null ? this.layers.hashCode() : 0); result = 31 * result + (this.logRetention != null ? this.logRetention.hashCode() : 0); result = 31 * result + (this.logRetentionRetryOptions != null ? this.logRetentionRetryOptions.hashCode() : 0); result = 31 * result + (this.logRetentionRole != null ? this.logRetentionRole.hashCode() : 0); result = 31 * result + (this.memorySize != null ? this.memorySize.hashCode() : 0); result = 31 * result + (this.profiling != null ? this.profiling.hashCode() : 0); result = 31 * result + (this.profilingGroup != null ? this.profilingGroup.hashCode() : 0); result = 31 * result + (this.reservedConcurrentExecutions != null ? this.reservedConcurrentExecutions.hashCode() : 0); result = 31 * result + (this.role != null ? this.role.hashCode() : 0); result = 31 * result + (this.securityGroup != null ? this.securityGroup.hashCode() : 0); result = 31 * result + (this.securityGroups != null ? this.securityGroups.hashCode() : 0); result = 31 * result + (this.timeout != null ? this.timeout.hashCode() : 0); result = 31 * result + (this.tracing != null ? this.tracing.hashCode() : 0); result = 31 * result + (this.vpc != null ? this.vpc.hashCode() : 0); result = 31 * result + (this.vpcSubnets != null ? this.vpcSubnets.hashCode() : 0); result = 31 * result + (this.maxEventAge != null ? this.maxEventAge.hashCode() : 0); result = 31 * result + (this.onFailure != null ? this.onFailure.hashCode() : 0); result = 31 * result + (this.onSuccess != null ? this.onSuccess.hashCode() : 0); result = 31 * result + (this.retryAttempts != null ? this.retryAttempts.hashCode() : 0); return result; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy