public class AWSLambdaClient extends AmazonWebServiceClient implements AWSLambda
AWS Lambda
S
Overview
This is the AWS Lambda API Reference . The AWS Lambda Developer Guide provides additional information. For the service overview, go to What is AWS Lambda , and for information about how the service works, go to AWS LambdaL How it Works in the AWS Lambda Developer Guide .
Modifier and Type | Field and Description |
---|---|
protected List<com.amazonaws.transform.JsonErrorUnmarshaller> |
jsonErrorUnmarshallers
List of exception unmarshallers for all AWSLambda exceptions.
|
client, clientConfiguration, endpoint, LOGGING_AWS_REQUEST_METRIC, requestHandler2s, timeOffset
Constructor and Description |
---|
AWSLambdaClient()
Constructs a new client to invoke service methods on
AWSLambda.
|
AWSLambdaClient(AWSCredentials awsCredentials)
Constructs a new client to invoke service methods on
AWSLambda using the specified AWS account credentials.
|
AWSLambdaClient(AWSCredentials awsCredentials,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSLambda using the specified AWS account credentials
and client configuration options.
|
AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider)
Constructs a new client to invoke service methods on
AWSLambda using the specified AWS account credentials provider.
|
AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSLambda using the specified AWS account credentials
provider and client configuration options.
|
AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider,
ClientConfiguration clientConfiguration,
RequestMetricCollector requestMetricCollector)
Constructs a new client to invoke service methods on
AWSLambda using the specified AWS account credentials
provider, client configuration options and request metric collector.
|
AWSLambdaClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on
AWSLambda.
|
Modifier and Type | Method and Description |
---|---|
AddPermissionResult |
addPermission(AddPermissionRequest addPermissionRequest)
Adds a permission to the access policy associated with the specified
AWS Lambda function.
|
CreateEventSourceMappingResult |
createEventSourceMapping(CreateEventSourceMappingRequest createEventSourceMappingRequest)
Identifies a stream as an event source for a Lambda function.
|
CreateFunctionResult |
createFunction(CreateFunctionRequest createFunctionRequest)
Creates a new Lambda function.
|
DeleteEventSourceMappingResult |
deleteEventSourceMapping(DeleteEventSourceMappingRequest deleteEventSourceMappingRequest)
Removes an event source mapping.
|
void |
deleteFunction(DeleteFunctionRequest deleteFunctionRequest)
Deletes the specified Lambda function code and configuration.
|
ResponseMetadata |
getCachedResponseMetadata(AmazonWebServiceRequest request)
Returns additional metadata for a previously executed successful, request, typically used for
debugging issues where a service isn't acting as expected.
|
GetEventSourceMappingResult |
getEventSourceMapping(GetEventSourceMappingRequest getEventSourceMappingRequest)
Returns configuration information for the specified event source
mapping (see CreateEventSourceMapping).
|
GetFunctionResult |
getFunction(GetFunctionRequest getFunctionRequest)
Returns the configuration information of the Lambda function and a
presigned URL link to the .zip file you uploaded with CreateFunction
so you can download the .zip file.
|
GetFunctionConfigurationResult |
getFunctionConfiguration(GetFunctionConfigurationRequest getFunctionConfigurationRequest)
Returns the configuration information of the Lambda function.
|
GetPolicyResult |
getPolicy(GetPolicyRequest getPolicyRequest)
Returns the access policy, containing a list of permissions granted
via the
AddPermission API, associated with the specified
bucket. |
InvokeResult |
invoke(InvokeRequest invokeRequest)
Invokes a specified Lambda function.
|
InvokeAsyncResult |
invokeAsync(InvokeAsyncRequest invokeAsyncRequest)
Deprecated.
|
ListEventSourceMappingsResult |
listEventSourceMappings()
Returns a list of event source mappings you created using the
CreateEventSourceMapping (see CreateEventSourceMapping),
where you identify a stream as an event source. |
ListEventSourceMappingsResult |
listEventSourceMappings(ListEventSourceMappingsRequest listEventSourceMappingsRequest)
Returns a list of event source mappings you created using the
CreateEventSourceMapping (see CreateEventSourceMapping),
where you identify a stream as an event source. |
ListFunctionsResult |
listFunctions()
Returns a list of your Lambda functions.
|
ListFunctionsResult |
listFunctions(ListFunctionsRequest listFunctionsRequest)
Returns a list of your Lambda functions.
|
void |
removePermission(RemovePermissionRequest removePermissionRequest)
You can remove individual permissions from an access policy
associated with a Lambda function by providing a Statement ID.
|
void |
setEndpoint(String endpoint)
Overrides the default endpoint for this client ("https://lambda.us-east-1.amazonaws.com/").
|
void |
setEndpoint(String endpoint,
String serviceName,
String regionId) |
UpdateEventSourceMappingResult |
updateEventSourceMapping(UpdateEventSourceMappingRequest updateEventSourceMappingRequest)
You can update an event source mapping.
|
UpdateFunctionCodeResult |
updateFunctionCode(UpdateFunctionCodeRequest updateFunctionCodeRequest)
Updates the code for the specified Lambda function.
|
UpdateFunctionConfigurationResult |
updateFunctionConfiguration(UpdateFunctionConfigurationRequest updateFunctionConfigurationRequest)
Updates the configuration parameters for the specified Lambda
function by using the values provided in the request.
|
addRequestHandler, addRequestHandler, beforeMarshalling, configSigner, configSigner, configureRegion, convertToHttpRequest, createExecutionContext, createExecutionContext, createExecutionContext, endClientExecution, endClientExecution, findRequestMetricCollector, getRequestMetricsCollector, getServiceAbbreviation, getServiceName, getServiceNameIntern, getSigner, getSignerByURI, getSignerRegionOverride, getTimeOffset, isProfilingEnabled, isRequestMetricsEnabled, removeRequestHandler, removeRequestHandler, requestMetricCollector, setConfiguration, setRegion, setRegion, setServiceNameIntern, setSignerRegionOverride, setTimeOffset, shutdown, withEndpoint, withRegion, withRegion, withTimeOffset
protected List<com.amazonaws.transform.JsonErrorUnmarshaller> jsonErrorUnmarshallers
public AWSLambdaClient()
All service calls made using this new client object are blocking, and will not return until the service call completes.
DefaultAWSCredentialsProviderChain
public AWSLambdaClient(ClientConfiguration clientConfiguration)
All service calls made using this new client object are blocking, and will not return until the service call completes.
clientConfiguration
- The client configuration options controlling how this
client connects to AWSLambda
(ex: proxy settings, retry counts, etc.).DefaultAWSCredentialsProviderChain
public AWSLambdaClient(AWSCredentials awsCredentials)
All service calls made using this new client object are blocking, and will not return until the service call completes.
awsCredentials
- The AWS credentials (access key ID and secret key) to use
when authenticating with AWS services.public AWSLambdaClient(AWSCredentials awsCredentials, ClientConfiguration clientConfiguration)
All service calls made using this new client object are blocking, and will not return until the service call completes.
awsCredentials
- The AWS credentials (access key ID and secret key) to use
when authenticating with AWS services.clientConfiguration
- The client configuration options controlling how this
client connects to AWSLambda
(ex: proxy settings, retry counts, etc.).public AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider)
All service calls made using this new client object are blocking, and will not return until the service call completes.
awsCredentialsProvider
- The AWS credentials provider which will provide credentials
to authenticate requests with AWS services.public AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
All service calls made using this new client object are blocking, and will not return until the service call completes.
awsCredentialsProvider
- The AWS credentials provider which will provide credentials
to authenticate requests with AWS services.clientConfiguration
- The client configuration options controlling how this
client connects to AWSLambda
(ex: proxy settings, retry counts, etc.).public AWSLambdaClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration, RequestMetricCollector requestMetricCollector)
All service calls made using this new client object are blocking, and will not return until the service call completes.
awsCredentialsProvider
- The AWS credentials provider which will provide credentials
to authenticate requests with AWS services.clientConfiguration
- The client configuration options controlling how this
client connects to AWSLambda
(ex: proxy settings, retry counts, etc.).requestMetricCollector
- optional request metric collectorpublic void deleteFunction(DeleteFunctionRequest deleteFunctionRequest)
Deletes the specified Lambda function code and configuration.
When you delete a function the associated access policy is also deleted. You will need to delete the event source mappings explicitly.
This operation requires permission for the
lambda:DeleteFunction
action.
deleteFunction
in interface AWSLambda
deleteFunctionRequest
- Container for the necessary parameters to
execute the DeleteFunction service method on AWSLambda.ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public AddPermissionResult addPermission(AddPermissionRequest addPermissionRequest)
Adds a permission to the access policy associated with the specified
AWS Lambda function. In a "push event" model, the access policy
attached to the Lambda function grants Amazon S3 or a user application
permission for the Lambda lambda:Invoke
action. For
information about the push model, see
AWS Lambda: How it Works
. Each Lambda function has one access policy associated with it. You
can use the AddPermission
API to add a permission to the
policy. You have one access policy but it can have multiple permission
statements.
This operation requires permission for the
lambda:AddPermission
action.
addPermission
in interface AWSLambda
addPermissionRequest
- Container for the necessary parameters to
execute the AddPermission service method on AWSLambda.InvalidParameterValueException
ServiceException
ResourceNotFoundException
PolicyLengthExceededException
ResourceConflictException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public ListFunctionsResult listFunctions(ListFunctionsRequest listFunctionsRequest)
Returns a list of your Lambda functions. For each function, the response includes the function configuration information. You must use GetFunction to retrieve the code for your function.
This operation requires permission for the
lambda:ListFunctions
action.
listFunctions
in interface AWSLambda
listFunctionsRequest
- Container for the necessary parameters to
execute the ListFunctions service method on AWSLambda.ServiceException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public void removePermission(RemovePermissionRequest removePermissionRequest)
You can remove individual permissions from an access policy associated with a Lambda function by providing a Statement ID.
Note that removal of a permission will cause an active event source to lose permission to the function.
You need permission for the lambda:RemovePermission
action.
removePermission
in interface AWSLambda
removePermissionRequest
- Container for the necessary parameters
to execute the RemovePermission service method on AWSLambda.ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public CreateFunctionResult createFunction(CreateFunctionRequest createFunctionRequest)
Creates a new Lambda function. The function metadata is created from the request parameters, and the code for the function is provided by a .zip file in the request body. If the function name already exists, the operation will fail. Note that the function name is case-sensitive.
This operation requires permission for the
lambda:CreateFunction
action.
createFunction
in interface AWSLambda
createFunctionRequest
- Container for the necessary parameters to
execute the CreateFunction service method on AWSLambda.InvalidParameterValueException
ServiceException
ResourceNotFoundException
ResourceConflictException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public UpdateEventSourceMappingResult updateEventSourceMapping(UpdateEventSourceMappingRequest updateEventSourceMappingRequest)
You can update an event source mapping. This is useful if you want to change the parameters of the existing mapping without losing your position in the stream. You can change which function will receive the stream records, but to change the stream itself, you must create a new mapping.
This operation requires permission for the
lambda:UpdateEventSourceMapping
action.
updateEventSourceMapping
in interface AWSLambda
updateEventSourceMappingRequest
- Container for the necessary
parameters to execute the UpdateEventSourceMapping service method on
AWSLambda.InvalidParameterValueException
ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.@Deprecated public InvokeAsyncResult invokeAsync(InvokeAsyncRequest invokeAsyncRequest)
IMPORTANT:This API is deprecated. We recommend you use Invoke API (see Invoke).
Submits an invocation request to AWS Lambda. Upon receiving the request, Lambda executes the specified function asynchronously. To see the logs generated by the Lambda function execution, see the CloudWatch logs console.
This operation requires permission for the
lambda:InvokeFunction
action.
invokeAsync
in interface AWSLambda
invokeAsyncRequest
- Container for the necessary parameters to
execute the InvokeAsync service method on AWSLambda.InvalidRequestContentException
ServiceException
ResourceNotFoundException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public UpdateFunctionConfigurationResult updateFunctionConfiguration(UpdateFunctionConfigurationRequest updateFunctionConfigurationRequest)
Updates the configuration parameters for the specified Lambda function by using the values provided in the request. You provide only the parameters you want to change. This operation must only be used on an existing Lambda function and cannot be used to update the function's code.
This operation requires permission for the
lambda:UpdateFunctionConfiguration
action.
updateFunctionConfiguration
in interface AWSLambda
updateFunctionConfigurationRequest
- Container for the necessary
parameters to execute the UpdateFunctionConfiguration service method
on AWSLambda.InvalidParameterValueException
ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public InvokeResult invoke(InvokeRequest invokeRequest)
Invokes a specified Lambda function.
This operation requires permission for the
lambda:InvokeFunction
action.
invoke
in interface AWSLambda
invokeRequest
- Container for the necessary parameters to execute
the Invoke service method on AWSLambda.InvalidRequestContentException
ServiceException
RequestTooLargeException
ResourceNotFoundException
UnsupportedMediaTypeException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public GetPolicyResult getPolicy(GetPolicyRequest getPolicyRequest)
Returns the access policy, containing a list of permissions granted
via the AddPermission
API, associated with the specified
bucket.
You need permission for the lambda:GetPolicy action.
getPolicy
in interface AWSLambda
getPolicyRequest
- Container for the necessary parameters to
execute the GetPolicy service method on AWSLambda.ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public ListEventSourceMappingsResult listEventSourceMappings(ListEventSourceMappingsRequest listEventSourceMappingsRequest)
Returns a list of event source mappings you created using the
CreateEventSourceMapping
(see CreateEventSourceMapping),
where you identify a stream as an event source. This list does not
include Amazon S3 event sources.
For each mapping, the API returns configuration information. You can optionally specify filters to retrieve specific event source mappings.
This operation requires permission for the
lambda:ListEventSourceMappings
action.
listEventSourceMappings
in interface AWSLambda
listEventSourceMappingsRequest
- Container for the necessary
parameters to execute the ListEventSourceMappings service method on
AWSLambda.InvalidParameterValueException
ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public GetEventSourceMappingResult getEventSourceMapping(GetEventSourceMappingRequest getEventSourceMappingRequest)
Returns configuration information for the specified event source mapping (see CreateEventSourceMapping).
This operation requires permission for the
lambda:GetEventSourceMapping
action.
getEventSourceMapping
in interface AWSLambda
getEventSourceMappingRequest
- Container for the necessary
parameters to execute the GetEventSourceMapping service method on
AWSLambda.InvalidParameterValueException
ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public GetFunctionConfigurationResult getFunctionConfiguration(GetFunctionConfigurationRequest getFunctionConfigurationRequest)
Returns the configuration information of the Lambda function. This the same information you provided as parameters when uploading the function by using CreateFunction.
This operation requires permission for the
lambda:GetFunctionConfiguration
operation.
getFunctionConfiguration
in interface AWSLambda
getFunctionConfigurationRequest
- Container for the necessary
parameters to execute the GetFunctionConfiguration service method on
AWSLambda.ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public DeleteEventSourceMappingResult deleteEventSourceMapping(DeleteEventSourceMappingRequest deleteEventSourceMappingRequest)
Removes an event source mapping. This means AWS Lambda will no longer invoke the function for events in the associated source.
This operation requires permission for the
lambda:DeleteEventSourceMapping
action.
deleteEventSourceMapping
in interface AWSLambda
deleteEventSourceMappingRequest
- Container for the necessary
parameters to execute the DeleteEventSourceMapping service method on
AWSLambda.InvalidParameterValueException
ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public CreateEventSourceMappingResult createEventSourceMapping(CreateEventSourceMappingRequest createEventSourceMappingRequest)
Identifies a stream as an event source for a Lambda function. It can be either an Amazon Kinesis stream or an Amazon DynamoDB stream. AWS Lambda invokes the specified function when records are posted to the stream.
This is the pull model, where AWS Lambda invokes the function. For more information, go to AWS Lambda: How it Works in the AWS Lambda Developer Guide .
This association between an Amazon Kinesis stream and a Lambda function is called the event source mapping. You provide the configuration information (for example, which stream to read from and which Lambda function to invoke) for the event source mapping in the request body.
Each event source, such as an Amazon Kinesis or a DynamoDB stream, can be associated with multiple AWS Lambda function. A given Lambda function can be associated with multiple AWS event sources.
This operation requires permission for the
lambda:CreateEventSourceMapping
action.
createEventSourceMapping
in interface AWSLambda
createEventSourceMappingRequest
- Container for the necessary
parameters to execute the CreateEventSourceMapping service method on
AWSLambda.InvalidParameterValueException
ServiceException
ResourceConflictException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public UpdateFunctionCodeResult updateFunctionCode(UpdateFunctionCodeRequest updateFunctionCodeRequest)
Updates the code for the specified Lambda function. This operation must only be used on an existing Lambda function and cannot be used to update the function configuration.
This operation requires permission for the
lambda:UpdateFunctionCode
action.
updateFunctionCode
in interface AWSLambda
updateFunctionCodeRequest
- Container for the necessary
parameters to execute the UpdateFunctionCode service method on
AWSLambda.InvalidParameterValueException
ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public GetFunctionResult getFunction(GetFunctionRequest getFunctionRequest)
Returns the configuration information of the Lambda function and a presigned URL link to the .zip file you uploaded with CreateFunction so you can download the .zip file. Note that the URL is valid for up to 10 minutes. The configuration information is the same information you provided as parameters when uploading the function.
This operation requires permission for the
lambda:GetFunction
action.
getFunction
in interface AWSLambda
getFunctionRequest
- Container for the necessary parameters to
execute the GetFunction service method on AWSLambda.ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public ListFunctionsResult listFunctions() throws AmazonServiceException, AmazonClientException
Returns a list of your Lambda functions. For each function, the response includes the function configuration information. You must use GetFunction to retrieve the code for your function.
This operation requires permission for the
lambda:ListFunctions
action.
listFunctions
in interface AWSLambda
ServiceException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public ListEventSourceMappingsResult listEventSourceMappings() throws AmazonServiceException, AmazonClientException
Returns a list of event source mappings you created using the
CreateEventSourceMapping
(see CreateEventSourceMapping),
where you identify a stream as an event source. This list does not
include Amazon S3 event sources.
For each mapping, the API returns configuration information. You can optionally specify filters to retrieve specific event source mappings.
This operation requires permission for the
lambda:ListEventSourceMappings
action.
listEventSourceMappings
in interface AWSLambda
InvalidParameterValueException
ServiceException
ResourceNotFoundException
TooManyRequestsException
AmazonClientException
- If any internal errors are encountered inside the client while
attempting to make the request or handle the response. For example
if a network connection is not available.AmazonServiceException
- If an error response is returned by AWSLambda indicating
either a problem with the data in the request, or a server side issue.public void setEndpoint(String endpoint)
AWSLambda
Callers can pass in just the endpoint (ex: "lambda.us-east-1.amazonaws.com/") or a full
URL, including the protocol (ex: "https://lambda.us-east-1.amazonaws.com/"). If the
protocol is not specified here, the default protocol from this client's
ClientConfiguration
will be used, which by default is HTTPS.
For more information on using AWS regions with the AWS SDK for Java, and a complete list of all available endpoints for all AWS services, see: http://developer.amazonwebservices.com/connect/entry.jspa?externalID=3912
This method is not threadsafe. An endpoint should be configured when the client is created and before any service requests are made. Changing it afterwards creates inevitable race conditions for any service requests in transit or retrying.
setEndpoint
in interface AWSLambda
setEndpoint
in class AmazonWebServiceClient
endpoint
- The endpoint (ex: "lambda.us-east-1.amazonaws.com/") or a full URL,
including the protocol (ex: "https://lambda.us-east-1.amazonaws.com/") of
the region specific AWS endpoint this client will communicate
with.public void setEndpoint(String endpoint, String serviceName, String regionId) throws IllegalArgumentException
setEndpoint
in class AmazonWebServiceClient
IllegalArgumentException
public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic information for an executed request, you should use this method to retrieve it as soon as possible after executing the request.
getCachedResponseMetadata
in interface AWSLambda
request
- The originally executed requestCopyright © 2015. All rights reserved.