public class PublishVersionRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
PublishVersion operation
.
Publishes a version of your function from the current snapshot of $LATEST. That is, AWS Lambda takes a snapshot of the function code and configuration information from $LATEST and publishes a new version. The code and configuration cannot be modified after publication. For information about the versioning feature, see AWS Lambda Function Versioning and Aliases .
NOOP
Constructor and Description |
---|
PublishVersionRequest() |
Modifier and Type | Method and Description |
---|---|
PublishVersionRequest |
clone() |
boolean |
equals(Object obj) |
String |
getCodeSha256()
The SHA256 hash of the deployment package you want to publish.
|
String |
getDescription()
The description for the version you are publishing.
|
String |
getFunctionName()
The Lambda function name.
|
int |
hashCode() |
void |
setCodeSha256(String codeSha256)
The SHA256 hash of the deployment package you want to publish.
|
void |
setDescription(String description)
The description for the version you are publishing.
|
void |
setFunctionName(String functionName)
The Lambda function name.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
PublishVersionRequest |
withCodeSha256(String codeSha256)
The SHA256 hash of the deployment package you want to publish.
|
PublishVersionRequest |
withDescription(String description)
The description for the version you are publishing.
|
PublishVersionRequest |
withFunctionName(String functionName)
The Lambda function name.
|
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
public String getFunctionName()
Thumbnail
) or you can specify Amazon Resource
Name (ARN) of the function (for example,
arn:aws:lambda:us-west-2:account-id:function:ThumbNail
).
AWS Lambda also allows you to specify a partial ARN (for example,
account-id:Thumbnail
). Note that the length constraint
applies only to the ARN. If you specify only the function name, it is
limited to 64 character in length.
Constraints:
Length: 1 - 140
Pattern: (arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
Thumbnail
) or you can specify Amazon Resource
Name (ARN) of the function (for example,
arn:aws:lambda:us-west-2:account-id:function:ThumbNail
).
AWS Lambda also allows you to specify a partial ARN (for example,
account-id:Thumbnail
). Note that the length constraint
applies only to the ARN. If you specify only the function name, it is
limited to 64 character in length.public void setFunctionName(String functionName)
Thumbnail
) or you can specify Amazon Resource
Name (ARN) of the function (for example,
arn:aws:lambda:us-west-2:account-id:function:ThumbNail
).
AWS Lambda also allows you to specify a partial ARN (for example,
account-id:Thumbnail
). Note that the length constraint
applies only to the ARN. If you specify only the function name, it is
limited to 64 character in length.
Constraints:
Length: 1 - 140
Pattern: (arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
functionName
- The Lambda function name. You can specify a function name (for
example, Thumbnail
) or you can specify Amazon Resource
Name (ARN) of the function (for example,
arn:aws:lambda:us-west-2:account-id:function:ThumbNail
).
AWS Lambda also allows you to specify a partial ARN (for example,
account-id:Thumbnail
). Note that the length constraint
applies only to the ARN. If you specify only the function name, it is
limited to 64 character in length.public PublishVersionRequest withFunctionName(String functionName)
Thumbnail
) or you can specify Amazon Resource
Name (ARN) of the function (for example,
arn:aws:lambda:us-west-2:account-id:function:ThumbNail
).
AWS Lambda also allows you to specify a partial ARN (for example,
account-id:Thumbnail
). Note that the length constraint
applies only to the ARN. If you specify only the function name, it is
limited to 64 character in length.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 140
Pattern: (arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
functionName
- The Lambda function name. You can specify a function name (for
example, Thumbnail
) or you can specify Amazon Resource
Name (ARN) of the function (for example,
arn:aws:lambda:us-west-2:account-id:function:ThumbNail
).
AWS Lambda also allows you to specify a partial ARN (for example,
account-id:Thumbnail
). Note that the length constraint
applies only to the ARN. If you specify only the function name, it is
limited to 64 character in length.public String getCodeSha256()
public void setCodeSha256(String codeSha256)
codeSha256
- The SHA256 hash of the deployment package you want to publish. This
provides validation on the code you are publishing. If you provide
this parameter value must match the SHA256 of the $LATEST version for
the publication to succeed.public PublishVersionRequest withCodeSha256(String codeSha256)
Returns a reference to this object so that method calls can be chained together.
codeSha256
- The SHA256 hash of the deployment package you want to publish. This
provides validation on the code you are publishing. If you provide
this parameter value must match the SHA256 of the $LATEST version for
the publication to succeed.public String getDescription()
Constraints:
Length: 0 - 256
public void setDescription(String description)
Constraints:
Length: 0 - 256
description
- The description for the version you are publishing. If not provided,
AWS Lambda copies the description from the $LATEST version.public PublishVersionRequest withDescription(String description)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 256
description
- The description for the version you are publishing. If not provided,
AWS Lambda copies the description from the $LATEST version.public String toString()
toString
in class Object
Object.toString()
public PublishVersionRequest clone()
clone
in class AmazonWebServiceRequest
Copyright © 2016. All rights reserved.