CopyableBuilder<PublishVersionRequest.Builder,PublishVersionRequest>
, SdkBuilder<PublishVersionRequest.Builder,PublishVersionRequest>
public static interface PublishVersionRequest.Builder extends CopyableBuilder<PublishVersionRequest.Builder,PublishVersionRequest>
Modifier and Type | Method | Description |
---|---|---|
PublishVersionRequest.Builder |
codeSha256(String codeSha256) |
The SHA256 hash of the deployment package you want to publish.
|
PublishVersionRequest.Builder |
description(String description) |
The description for the version you are publishing.
|
PublishVersionRequest.Builder |
functionName(String functionName) |
The Lambda function name.
|
copy
apply, build
PublishVersionRequest.Builder functionName(String 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 characters in length.
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
characters in length.PublishVersionRequest.Builder codeSha256(String 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.
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.PublishVersionRequest.Builder description(String description)
The description for the version you are publishing. If not provided, AWS Lambda copies the description from the $LATEST version.
description
- The description for the version you are publishing. If not provided, AWS Lambda copies the description
from the $LATEST version.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.