ToCopyableBuilder<UpdateFunctionCodeResponse.Builder,UpdateFunctionCodeResponse>
@Generated("software.amazon.awssdk:codegen") public class UpdateFunctionCodeResponse extends AmazonWebServiceResult<ResponseMetadata> implements ToCopyableBuilder<UpdateFunctionCodeResponse.Builder,UpdateFunctionCodeResponse>
A complex type that describes function metadata.
Modifier and Type | Class | Description |
---|---|---|
static interface |
UpdateFunctionCodeResponse.Builder |
Modifier and Type | Method | Description |
---|---|---|
static UpdateFunctionCodeResponse.Builder |
builder() |
|
String |
codeSha256() |
It is the SHA256 hash of your function deployment package.
|
Long |
codeSize() |
The size, in bytes, of the function .zip file you uploaded.
|
DeadLetterConfig |
deadLetterConfig() |
The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS topic.
|
String |
description() |
The user-provided description.
|
EnvironmentResponse |
environment() |
The parent object that contains your environment's configuration settings.
|
boolean |
equals(Object obj) |
|
String |
functionArn() |
The Amazon Resource Name (ARN) assigned to the function.
|
String |
functionName() |
The name of the function.
|
String |
handler() |
The function Lambda calls to begin executing your function.
|
int |
hashCode() |
|
String |
kmsKeyArn() |
The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables.
|
String |
lastModified() |
The time stamp of the last time you updated the function.
|
Integer |
memorySize() |
The memory size, in MB, you configured for the function.
|
String |
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.
|
String |
runtime() |
The runtime environment for the Lambda function.
|
static Class<? extends UpdateFunctionCodeResponse.Builder> |
serializableBuilderClass() |
|
Integer |
timeout() |
The function execution time at which Lambda should terminate the function.
|
UpdateFunctionCodeResponse.Builder |
toBuilder() |
Take this object and create a builder that contains all of the current property values of this object.
|
String |
toString() |
|
TracingConfigResponse |
tracingConfig() |
The parent object that contains your function's tracing settings.
|
String |
version() |
The version of the Lambda function.
|
VpcConfigResponse |
vpcConfig() |
VPC configuration associated with your Lambda function.
|
setSdkHttpMetadata, setSdkResponseMetadata
public String functionName()
The name of the function. 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 functionArn()
The Amazon Resource Name (ARN) assigned to the function.
public String runtime()
The runtime environment for the Lambda function.
Runtime
public String 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.
public String handler()
The function Lambda calls to begin executing your function.
public Long codeSize()
The size, in bytes, of the function .zip file you uploaded.
public String description()
The user-provided description.
public Integer 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 Integer memorySize()
The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.
public String lastModified()
The time stamp of the last time you updated the function. The time stamp is conveyed as a string complying with ISO-8601 in this way YYYY-MM-DDThh:mm:ssTZD (e.g., 1997-07-16T19:20:30+01:00). For more information, see Date and Time Formats.
public String codeSha256()
It is the SHA256 hash of your function deployment package.
public String version()
The version of the Lambda function.
public VpcConfigResponse vpcConfig()
VPC configuration associated with your Lambda function.
public DeadLetterConfig deadLetterConfig()
The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS topic.
public EnvironmentResponse environment()
The parent object that contains your environment's configuration settings.
public String kmsKeyArn()
The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If empty, it means you are using the AWS Lambda default service key.
public TracingConfigResponse tracingConfig()
The parent object that contains your function's tracing settings.
public UpdateFunctionCodeResponse.Builder toBuilder()
ToCopyableBuilder
toBuilder
in interface ToCopyableBuilder<UpdateFunctionCodeResponse.Builder,UpdateFunctionCodeResponse>
public static UpdateFunctionCodeResponse.Builder builder()
public static Class<? extends UpdateFunctionCodeResponse.Builder> serializableBuilderClass()
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.