com.amazonaws.services.lambda.model.CreateFunctionRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-lambda Show documentation
/*
* Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.lambda.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateFunctionRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The name you want to assign to the function you are uploading. The function names appear in the console and are
* returned in the ListFunctions API. Function names are used to specify functions to other AWS Lambda API
* operations, such as Invoke. Note that the length constraint applies only to the ARN. If you specify only
* the function name, it is limited to 64 characters in length.
*
*/
private String functionName;
/**
*
* The runtime environment for the Lambda function you are uploading.
*
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the value to
* "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js runtime v4.3,
* set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js runtime
* versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so will result in
* an invalid parmaeter error being returned. Note that you will have to follow this procedure for each region that
* contains functions written in the Node v0.10.42 runtime.
*
*
*/
private String runtime;
/**
*
* The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any
* other Amazon Web Services (AWS) resources. For more information, see AWS Lambda: How it Works.
*
*/
private String role;
/**
*
* The function within your code that Lambda calls to begin execution. For Node.js, it is the
* module-name.export value in your function. For Java, it can be
* package.class-name::handler
or package.class-name
. For more information, see Lambda Function
* Handler (Java).
*
*/
private String handler;
/**
*
* The code for the Lambda function.
*
*/
private FunctionCode code;
/**
*
* A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as
* you see fit.
*
*/
private String description;
/**
*
* The function execution time at which Lambda should terminate the function. Because the execution time has cost
* implications, we recommend you set this value based on your expected execution time. The default is 3 seconds.
*
*/
private Integer timeout;
/**
*
* The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the amount of
* CPU and memory allocated to your function. Your function use-case determines your CPU and memory requirements.
* For example, a database operation might need less memory compared to an image processing function. The default
* value is 128 MB. The value must be a multiple of 64 MB.
*
*/
private Integer memorySize;
/**
*
* This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as
* an atomic operation.
*
*/
private Boolean publish;
/**
*
* If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of security
* group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and one
* subnet ID.
*
*/
private VpcConfig vpcConfig;
/**
*
* The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS topic.
*
*/
private DeadLetterConfig deadLetterConfig;
private Environment environment;
/**
*
* The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If not
* provided, AWS Lambda will use a default service key.
*
*/
private String kMSKeyArn;
/**
*
* The parent object that contains your function's tracing settings.
*
*/
private TracingConfig tracingConfig;
/**
*
* The list of tags (key-value pairs) assigned to the new function.
*
*/
private com.amazonaws.internal.SdkInternalMap tags;
/**
*
* The name you want to assign to the function you are uploading. The function names appear in the console and are
* returned in the ListFunctions API. Function names are used to specify functions to other AWS Lambda API
* operations, such as Invoke. Note that the length constraint applies only to the ARN. If you specify only
* the function name, it is limited to 64 characters in length.
*
*
* @param functionName
* The name you want to assign to the function you are uploading. The function names appear in the console
* and are returned in the ListFunctions API. Function names are used to specify functions to other
* AWS Lambda API operations, such as Invoke. Note that the length constraint applies only to the ARN.
* If you specify only the function name, it is limited to 64 characters in length.
*/
public void setFunctionName(String functionName) {
this.functionName = functionName;
}
/**
*
* The name you want to assign to the function you are uploading. The function names appear in the console and are
* returned in the ListFunctions API. Function names are used to specify functions to other AWS Lambda API
* operations, such as Invoke. Note that the length constraint applies only to the ARN. If you specify only
* the function name, it is limited to 64 characters in length.
*
*
* @return The name you want to assign to the function you are uploading. The function names appear in the console
* and are returned in the ListFunctions API. Function names are used to specify functions to other
* AWS Lambda API operations, such as Invoke. Note that the length constraint applies only to the
* ARN. If you specify only the function name, it is limited to 64 characters in length.
*/
public String getFunctionName() {
return this.functionName;
}
/**
*
* The name you want to assign to the function you are uploading. The function names appear in the console and are
* returned in the ListFunctions API. Function names are used to specify functions to other AWS Lambda API
* operations, such as Invoke. Note that the length constraint applies only to the ARN. If you specify only
* the function name, it is limited to 64 characters in length.
*
*
* @param functionName
* The name you want to assign to the function you are uploading. The function names appear in the console
* and are returned in the ListFunctions API. Function names are used to specify functions to other
* AWS Lambda API operations, such as Invoke. Note that the length constraint applies only to the ARN.
* If you specify only the function name, it is limited to 64 characters in length.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withFunctionName(String functionName) {
setFunctionName(functionName);
return this;
}
/**
*
* The runtime environment for the Lambda function you are uploading.
*
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the value to
* "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js runtime v4.3,
* set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js runtime
* versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so will result in
* an invalid parmaeter error being returned. Note that you will have to follow this procedure for each region that
* contains functions written in the Node v0.10.42 runtime.
*
*
*
* @param runtime
* The runtime environment for the Lambda function you are uploading.
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the
* value to "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js
* runtime v4.3, set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js
* runtime versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so
* will result in an invalid parmaeter error being returned. Note that you will have to follow this procedure
* for each region that contains functions written in the Node v0.10.42 runtime.
*
* @see Runtime
*/
public void setRuntime(String runtime) {
this.runtime = runtime;
}
/**
*
* The runtime environment for the Lambda function you are uploading.
*
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the value to
* "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js runtime v4.3,
* set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js runtime
* versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so will result in
* an invalid parmaeter error being returned. Note that you will have to follow this procedure for each region that
* contains functions written in the Node v0.10.42 runtime.
*
*
*
* @return The runtime environment for the Lambda function you are uploading.
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the
* value to "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js
* runtime v4.3, set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js
* runtime versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so
* will result in an invalid parmaeter error being returned. Note that you will have to follow this
* procedure for each region that contains functions written in the Node v0.10.42 runtime.
*
* @see Runtime
*/
public String getRuntime() {
return this.runtime;
}
/**
*
* The runtime environment for the Lambda function you are uploading.
*
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the value to
* "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js runtime v4.3,
* set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js runtime
* versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so will result in
* an invalid parmaeter error being returned. Note that you will have to follow this procedure for each region that
* contains functions written in the Node v0.10.42 runtime.
*
*
*
* @param runtime
* The runtime environment for the Lambda function you are uploading.
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the
* value to "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js
* runtime v4.3, set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js
* runtime versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so
* will result in an invalid parmaeter error being returned. Note that you will have to follow this procedure
* for each region that contains functions written in the Node v0.10.42 runtime.
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see Runtime
*/
public CreateFunctionRequest withRuntime(String runtime) {
setRuntime(runtime);
return this;
}
/**
*
* The runtime environment for the Lambda function you are uploading.
*
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the value to
* "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js runtime v4.3,
* set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js runtime
* versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so will result in
* an invalid parmaeter error being returned. Note that you will have to follow this procedure for each region that
* contains functions written in the Node v0.10.42 runtime.
*
*
*
* @param runtime
* The runtime environment for the Lambda function you are uploading.
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the
* value to "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js
* runtime v4.3, set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js
* runtime versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so
* will result in an invalid parmaeter error being returned. Note that you will have to follow this procedure
* for each region that contains functions written in the Node v0.10.42 runtime.
*
* @see Runtime
*/
public void setRuntime(Runtime runtime) {
withRuntime(runtime);
}
/**
*
* The runtime environment for the Lambda function you are uploading.
*
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the value to
* "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js runtime v4.3,
* set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js runtime
* versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so will result in
* an invalid parmaeter error being returned. Note that you will have to follow this procedure for each region that
* contains functions written in the Node v0.10.42 runtime.
*
*
*
* @param runtime
* The runtime environment for the Lambda function you are uploading.
*
* To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the
* value to "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js
* runtime v4.3, set the value to "nodejs4.3".
*
*
*
* Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js
* runtime versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so
* will result in an invalid parmaeter error being returned. Note that you will have to follow this procedure
* for each region that contains functions written in the Node v0.10.42 runtime.
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see Runtime
*/
public CreateFunctionRequest withRuntime(Runtime runtime) {
this.runtime = runtime.toString();
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any
* other Amazon Web Services (AWS) resources. For more information, see AWS Lambda: How it Works.
*
*
* @param role
* The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to
* access any other Amazon Web Services (AWS) resources. For more information, see AWS Lambda: How it Works.
*/
public void setRole(String role) {
this.role = role;
}
/**
*
* The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any
* other Amazon Web Services (AWS) resources. For more information, see AWS Lambda: How it Works.
*
*
* @return The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to
* access any other Amazon Web Services (AWS) resources. For more information, see AWS Lambda: How it Works.
*/
public String getRole() {
return this.role;
}
/**
*
* The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any
* other Amazon Web Services (AWS) resources. For more information, see AWS Lambda: How it Works.
*
*
* @param role
* The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to
* access any other Amazon Web Services (AWS) resources. For more information, see AWS Lambda: How it Works.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withRole(String role) {
setRole(role);
return this;
}
/**
*
* The function within your code that Lambda calls to begin execution. For Node.js, it is the
* module-name.export value in your function. For Java, it can be
* package.class-name::handler
or package.class-name
. For more information, see Lambda Function
* Handler (Java).
*
*
* @param handler
* The function within your code that Lambda calls to begin execution. For Node.js, it is the
* module-name.export value in your function. For Java, it can be
* package.class-name::handler
or package.class-name
. For more information, see Lambda
* Function Handler (Java).
*/
public void setHandler(String handler) {
this.handler = handler;
}
/**
*
* The function within your code that Lambda calls to begin execution. For Node.js, it is the
* module-name.export value in your function. For Java, it can be
* package.class-name::handler
or package.class-name
. For more information, see Lambda Function
* Handler (Java).
*
*
* @return The function within your code that Lambda calls to begin execution. For Node.js, it is the
* module-name.export value in your function. For Java, it can be
* package.class-name::handler
or package.class-name
. For more information, see Lambda
* Function Handler (Java).
*/
public String getHandler() {
return this.handler;
}
/**
*
* The function within your code that Lambda calls to begin execution. For Node.js, it is the
* module-name.export value in your function. For Java, it can be
* package.class-name::handler
or package.class-name
. For more information, see Lambda Function
* Handler (Java).
*
*
* @param handler
* The function within your code that Lambda calls to begin execution. For Node.js, it is the
* module-name.export value in your function. For Java, it can be
* package.class-name::handler
or package.class-name
. For more information, see Lambda
* Function Handler (Java).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withHandler(String handler) {
setHandler(handler);
return this;
}
/**
*
* The code for the Lambda function.
*
*
* @param code
* The code for the Lambda function.
*/
public void setCode(FunctionCode code) {
this.code = code;
}
/**
*
* The code for the Lambda function.
*
*
* @return The code for the Lambda function.
*/
public FunctionCode getCode() {
return this.code;
}
/**
*
* The code for the Lambda function.
*
*
* @param code
* The code for the Lambda function.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withCode(FunctionCode code) {
setCode(code);
return this;
}
/**
*
* A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as
* you see fit.
*
*
* @param description
* A short, user-defined function description. Lambda does not use this value. Assign a meaningful
* description as you see fit.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as
* you see fit.
*
*
* @return A short, user-defined function description. Lambda does not use this value. Assign a meaningful
* description as you see fit.
*/
public String getDescription() {
return this.description;
}
/**
*
* A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as
* you see fit.
*
*
* @param description
* A short, user-defined function description. Lambda does not use this value. Assign a meaningful
* description as you see fit.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withDescription(String description) {
setDescription(description);
return this;
}
/**
*
* The function execution time at which Lambda should terminate the function. Because the execution time has cost
* implications, we recommend you set this value based on your expected execution time. The default is 3 seconds.
*
*
* @param timeout
* The function execution time at which Lambda should terminate the function. Because the execution time has
* cost implications, we recommend you set this value based on your expected execution time. The default is 3
* seconds.
*/
public void setTimeout(Integer timeout) {
this.timeout = timeout;
}
/**
*
* The function execution time at which Lambda should terminate the function. Because the execution time has cost
* implications, we recommend you set this value based on your expected execution time. The default is 3 seconds.
*
*
* @return The function execution time at which Lambda should terminate the function. Because the execution time has
* cost implications, we recommend you set this value based on your expected execution time. The default is
* 3 seconds.
*/
public Integer getTimeout() {
return this.timeout;
}
/**
*
* The function execution time at which Lambda should terminate the function. Because the execution time has cost
* implications, we recommend you set this value based on your expected execution time. The default is 3 seconds.
*
*
* @param timeout
* The function execution time at which Lambda should terminate the function. Because the execution time has
* cost implications, we recommend you set this value based on your expected execution time. The default is 3
* seconds.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withTimeout(Integer timeout) {
setTimeout(timeout);
return this;
}
/**
*
* The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the amount of
* CPU and memory allocated to your function. Your function use-case determines your CPU and memory requirements.
* For example, a database operation might need less memory compared to an image processing function. The default
* value is 128 MB. The value must be a multiple of 64 MB.
*
*
* @param memorySize
* The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the
* amount of CPU and memory allocated to your function. Your function use-case determines your CPU and memory
* requirements. For example, a database operation might need less memory compared to an image processing
* function. The default value is 128 MB. The value must be a multiple of 64 MB.
*/
public void setMemorySize(Integer memorySize) {
this.memorySize = memorySize;
}
/**
*
* The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the amount of
* CPU and memory allocated to your function. Your function use-case determines your CPU and memory requirements.
* For example, a database operation might need less memory compared to an image processing function. The default
* value is 128 MB. The value must be a multiple of 64 MB.
*
*
* @return The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the
* amount of CPU and memory allocated to your function. Your function use-case determines your CPU and
* memory requirements. For example, a database operation might need less memory compared to an image
* processing function. The default value is 128 MB. The value must be a multiple of 64 MB.
*/
public Integer getMemorySize() {
return this.memorySize;
}
/**
*
* The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the amount of
* CPU and memory allocated to your function. Your function use-case determines your CPU and memory requirements.
* For example, a database operation might need less memory compared to an image processing function. The default
* value is 128 MB. The value must be a multiple of 64 MB.
*
*
* @param memorySize
* The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the
* amount of CPU and memory allocated to your function. Your function use-case determines your CPU and memory
* requirements. For example, a database operation might need less memory compared to an image processing
* function. The default value is 128 MB. The value must be a multiple of 64 MB.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withMemorySize(Integer memorySize) {
setMemorySize(memorySize);
return this;
}
/**
*
* This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as
* an atomic operation.
*
*
* @param publish
* This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a
* version as an atomic operation.
*/
public void setPublish(Boolean publish) {
this.publish = publish;
}
/**
*
* This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as
* an atomic operation.
*
*
* @return This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a
* version as an atomic operation.
*/
public Boolean getPublish() {
return this.publish;
}
/**
*
* This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as
* an atomic operation.
*
*
* @param publish
* This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a
* version as an atomic operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withPublish(Boolean publish) {
setPublish(publish);
return this;
}
/**
*
* This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a version as
* an atomic operation.
*
*
* @return This boolean parameter can be used to request AWS Lambda to create the Lambda function and publish a
* version as an atomic operation.
*/
public Boolean isPublish() {
return this.publish;
}
/**
*
* If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of security
* group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and one
* subnet ID.
*
*
* @param vpcConfig
* If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of
* security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one
* security group and one subnet ID.
*/
public void setVpcConfig(VpcConfig vpcConfig) {
this.vpcConfig = vpcConfig;
}
/**
*
* If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of security
* group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and one
* subnet ID.
*
*
* @return If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of
* security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one
* security group and one subnet ID.
*/
public VpcConfig getVpcConfig() {
return this.vpcConfig;
}
/**
*
* If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of security
* group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one security group and one
* subnet ID.
*
*
* @param vpcConfig
* If your Lambda function accesses resources in a VPC, you provide this parameter identifying the list of
* security group IDs and subnet IDs. These must belong to the same VPC. You must provide at least one
* security group and one subnet ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withVpcConfig(VpcConfig vpcConfig) {
setVpcConfig(vpcConfig);
return this;
}
/**
*
* The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS topic.
*
*
* @param deadLetterConfig
* The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
* topic.
*/
public void setDeadLetterConfig(DeadLetterConfig deadLetterConfig) {
this.deadLetterConfig = deadLetterConfig;
}
/**
*
* The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS topic.
*
*
* @return The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon
* SNS topic.
*/
public DeadLetterConfig getDeadLetterConfig() {
return this.deadLetterConfig;
}
/**
*
* The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS topic.
*
*
* @param deadLetterConfig
* The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS
* topic.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withDeadLetterConfig(DeadLetterConfig deadLetterConfig) {
setDeadLetterConfig(deadLetterConfig);
return this;
}
/**
* @param environment
*/
public void setEnvironment(Environment environment) {
this.environment = environment;
}
/**
* @return
*/
public Environment getEnvironment() {
return this.environment;
}
/**
* @param environment
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withEnvironment(Environment environment) {
setEnvironment(environment);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If not
* provided, AWS Lambda will use a default service key.
*
*
* @param kMSKeyArn
* The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If
* not provided, AWS Lambda will use a default service key.
*/
public void setKMSKeyArn(String kMSKeyArn) {
this.kMSKeyArn = kMSKeyArn;
}
/**
*
* The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If not
* provided, AWS Lambda will use a default service key.
*
*
* @return The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If
* not provided, AWS Lambda will use a default service key.
*/
public String getKMSKeyArn() {
return this.kMSKeyArn;
}
/**
*
* The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If not
* provided, AWS Lambda will use a default service key.
*
*
* @param kMSKeyArn
* The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If
* not provided, AWS Lambda will use a default service key.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withKMSKeyArn(String kMSKeyArn) {
setKMSKeyArn(kMSKeyArn);
return this;
}
/**
*
* The parent object that contains your function's tracing settings.
*
*
* @param tracingConfig
* The parent object that contains your function's tracing settings.
*/
public void setTracingConfig(TracingConfig tracingConfig) {
this.tracingConfig = tracingConfig;
}
/**
*
* The parent object that contains your function's tracing settings.
*
*
* @return The parent object that contains your function's tracing settings.
*/
public TracingConfig getTracingConfig() {
return this.tracingConfig;
}
/**
*
* The parent object that contains your function's tracing settings.
*
*
* @param tracingConfig
* The parent object that contains your function's tracing settings.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withTracingConfig(TracingConfig tracingConfig) {
setTracingConfig(tracingConfig);
return this;
}
/**
*
* The list of tags (key-value pairs) assigned to the new function.
*
*
* @return The list of tags (key-value pairs) assigned to the new function.
*/
public java.util.Map getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.SdkInternalMap();
}
return tags;
}
/**
*
* The list of tags (key-value pairs) assigned to the new function.
*
*
* @param tags
* The list of tags (key-value pairs) assigned to the new function.
*/
public void setTags(java.util.Map tags) {
this.tags = tags == null ? null : new com.amazonaws.internal.SdkInternalMap(tags);
}
/**
*
* The list of tags (key-value pairs) assigned to the new function.
*
*
* @param tags
* The list of tags (key-value pairs) assigned to the new function.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest withTags(java.util.Map tags) {
setTags(tags);
return this;
}
public CreateFunctionRequest addTagsEntry(String key, String value) {
if (null == this.tags) {
this.tags = new com.amazonaws.internal.SdkInternalMap();
}
if (this.tags.containsKey(key))
throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided.");
this.tags.put(key, value);
return this;
}
/**
* Removes all the entries added into Tags.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFunctionRequest clearTagsEntries() {
this.tags = null;
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getFunctionName() != null)
sb.append("FunctionName: ").append(getFunctionName()).append(",");
if (getRuntime() != null)
sb.append("Runtime: ").append(getRuntime()).append(",");
if (getRole() != null)
sb.append("Role: ").append(getRole()).append(",");
if (getHandler() != null)
sb.append("Handler: ").append(getHandler()).append(",");
if (getCode() != null)
sb.append("Code: ").append(getCode()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription()).append(",");
if (getTimeout() != null)
sb.append("Timeout: ").append(getTimeout()).append(",");
if (getMemorySize() != null)
sb.append("MemorySize: ").append(getMemorySize()).append(",");
if (getPublish() != null)
sb.append("Publish: ").append(getPublish()).append(",");
if (getVpcConfig() != null)
sb.append("VpcConfig: ").append(getVpcConfig()).append(",");
if (getDeadLetterConfig() != null)
sb.append("DeadLetterConfig: ").append(getDeadLetterConfig()).append(",");
if (getEnvironment() != null)
sb.append("Environment: ").append(getEnvironment()).append(",");
if (getKMSKeyArn() != null)
sb.append("KMSKeyArn: ").append(getKMSKeyArn()).append(",");
if (getTracingConfig() != null)
sb.append("TracingConfig: ").append(getTracingConfig()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateFunctionRequest == false)
return false;
CreateFunctionRequest other = (CreateFunctionRequest) obj;
if (other.getFunctionName() == null ^ this.getFunctionName() == null)
return false;
if (other.getFunctionName() != null && other.getFunctionName().equals(this.getFunctionName()) == false)
return false;
if (other.getRuntime() == null ^ this.getRuntime() == null)
return false;
if (other.getRuntime() != null && other.getRuntime().equals(this.getRuntime()) == false)
return false;
if (other.getRole() == null ^ this.getRole() == null)
return false;
if (other.getRole() != null && other.getRole().equals(this.getRole()) == false)
return false;
if (other.getHandler() == null ^ this.getHandler() == null)
return false;
if (other.getHandler() != null && other.getHandler().equals(this.getHandler()) == false)
return false;
if (other.getCode() == null ^ this.getCode() == null)
return false;
if (other.getCode() != null && other.getCode().equals(this.getCode()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false)
return false;
if (other.getTimeout() == null ^ this.getTimeout() == null)
return false;
if (other.getTimeout() != null && other.getTimeout().equals(this.getTimeout()) == false)
return false;
if (other.getMemorySize() == null ^ this.getMemorySize() == null)
return false;
if (other.getMemorySize() != null && other.getMemorySize().equals(this.getMemorySize()) == false)
return false;
if (other.getPublish() == null ^ this.getPublish() == null)
return false;
if (other.getPublish() != null && other.getPublish().equals(this.getPublish()) == false)
return false;
if (other.getVpcConfig() == null ^ this.getVpcConfig() == null)
return false;
if (other.getVpcConfig() != null && other.getVpcConfig().equals(this.getVpcConfig()) == false)
return false;
if (other.getDeadLetterConfig() == null ^ this.getDeadLetterConfig() == null)
return false;
if (other.getDeadLetterConfig() != null && other.getDeadLetterConfig().equals(this.getDeadLetterConfig()) == false)
return false;
if (other.getEnvironment() == null ^ this.getEnvironment() == null)
return false;
if (other.getEnvironment() != null && other.getEnvironment().equals(this.getEnvironment()) == false)
return false;
if (other.getKMSKeyArn() == null ^ this.getKMSKeyArn() == null)
return false;
if (other.getKMSKeyArn() != null && other.getKMSKeyArn().equals(this.getKMSKeyArn()) == false)
return false;
if (other.getTracingConfig() == null ^ this.getTracingConfig() == null)
return false;
if (other.getTracingConfig() != null && other.getTracingConfig().equals(this.getTracingConfig()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getFunctionName() == null) ? 0 : getFunctionName().hashCode());
hashCode = prime * hashCode + ((getRuntime() == null) ? 0 : getRuntime().hashCode());
hashCode = prime * hashCode + ((getRole() == null) ? 0 : getRole().hashCode());
hashCode = prime * hashCode + ((getHandler() == null) ? 0 : getHandler().hashCode());
hashCode = prime * hashCode + ((getCode() == null) ? 0 : getCode().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getTimeout() == null) ? 0 : getTimeout().hashCode());
hashCode = prime * hashCode + ((getMemorySize() == null) ? 0 : getMemorySize().hashCode());
hashCode = prime * hashCode + ((getPublish() == null) ? 0 : getPublish().hashCode());
hashCode = prime * hashCode + ((getVpcConfig() == null) ? 0 : getVpcConfig().hashCode());
hashCode = prime * hashCode + ((getDeadLetterConfig() == null) ? 0 : getDeadLetterConfig().hashCode());
hashCode = prime * hashCode + ((getEnvironment() == null) ? 0 : getEnvironment().hashCode());
hashCode = prime * hashCode + ((getKMSKeyArn() == null) ? 0 : getKMSKeyArn().hashCode());
hashCode = prime * hashCode + ((getTracingConfig() == null) ? 0 : getTracingConfig().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public CreateFunctionRequest clone() {
return (CreateFunctionRequest) super.clone();
}
}