Lambda
This page documents function available when using the Lambda
module, created with @service Lambda
.
Index
Main.Lambda.add_layer_version_permission
Main.Lambda.add_permission
Main.Lambda.create_alias
Main.Lambda.create_code_signing_config
Main.Lambda.create_event_source_mapping
Main.Lambda.create_function
Main.Lambda.delete_alias
Main.Lambda.delete_code_signing_config
Main.Lambda.delete_event_source_mapping
Main.Lambda.delete_function
Main.Lambda.delete_function_code_signing_config
Main.Lambda.delete_function_concurrency
Main.Lambda.delete_function_event_invoke_config
Main.Lambda.delete_layer_version
Main.Lambda.delete_provisioned_concurrency_config
Main.Lambda.get_account_settings
Main.Lambda.get_alias
Main.Lambda.get_code_signing_config
Main.Lambda.get_event_source_mapping
Main.Lambda.get_function
Main.Lambda.get_function_code_signing_config
Main.Lambda.get_function_concurrency
Main.Lambda.get_function_configuration
Main.Lambda.get_function_event_invoke_config
Main.Lambda.get_layer_version
Main.Lambda.get_layer_version_by_arn
Main.Lambda.get_layer_version_policy
Main.Lambda.get_policy
Main.Lambda.get_provisioned_concurrency_config
Main.Lambda.invoke
Main.Lambda.invoke_async
Main.Lambda.list_aliases
Main.Lambda.list_code_signing_configs
Main.Lambda.list_event_source_mappings
Main.Lambda.list_function_event_invoke_configs
Main.Lambda.list_functions
Main.Lambda.list_functions_by_code_signing_config
Main.Lambda.list_layer_versions
Main.Lambda.list_layers
Main.Lambda.list_provisioned_concurrency_configs
Main.Lambda.list_tags
Main.Lambda.list_versions_by_function
Main.Lambda.publish_layer_version
Main.Lambda.publish_version
Main.Lambda.put_function_code_signing_config
Main.Lambda.put_function_concurrency
Main.Lambda.put_function_event_invoke_config
Main.Lambda.put_provisioned_concurrency_config
Main.Lambda.remove_layer_version_permission
Main.Lambda.remove_permission
Main.Lambda.tag_resource
Main.Lambda.untag_resource
Main.Lambda.update_alias
Main.Lambda.update_code_signing_config
Main.Lambda.update_event_source_mapping
Main.Lambda.update_function_code
Main.Lambda.update_function_configuration
Main.Lambda.update_function_event_invoke_config
Documentation
Main.Lambda.add_layer_version_permission
— Methodadd_layer_version_permission(action, layer_name, principal, statement_id, version_number)
add_layer_version_permission(action, layer_name, principal, statement_id, version_number, params::Dict{String,<:Any})
Adds permissions to the resource-based policy of a version of an AWS Lambda layer. Use this action to grant layer usage permission to other accounts. You can grant permission to a single account, all AWS accounts, or all accounts in an organization. To revoke permission, call RemoveLayerVersionPermission with the statement ID that you specified when you added it.
Arguments
action
: The API action that grants access to the layer. For example, lambda:GetLayerVersion.layer_name
: The name or Amazon Resource Name (ARN) of the layer.principal
: An account ID, or * to grant permission to all AWS accounts.statement_id
: An identifier that distinguishes the policy from others on the same layer version.version_number
: The version number.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"OrganizationId"
: With the principal set to *, grant permission to all accounts in the specified organization."RevisionId"
: Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a policy that has changed since you last read it.
Main.Lambda.add_permission
— Methodadd_permission(action, function_name, principal, statement_id)
add_permission(action, function_name, principal, statement_id, params::Dict{String,<:Any})
Grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function. To grant permission to another account, specify the account ID as the Principal. For AWS services, the principal is a domain-style identifier defined by the service, like s3.amazonaws.com or sns.amazonaws.com. For AWS services, you can also specify the ARN of the associated resource as the SourceArn. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function. This action adds a statement to a resource-based permissions policy for the function. For more information about function policies, see Lambda Function Policies.
Arguments
action
: The action that the principal can use on the function. For example, lambda:InvokeFunction or lambda:GetFunction.function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.principal
: The AWS service or account that invokes the function. If you specify a service, use SourceArn or SourceAccount to limit who can invoke the function through that service.statement_id
: A statement identifier that differentiates the statement from others in the same policy.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"EventSourceToken"
: For Alexa Smart Home functions, a token that must be supplied by the invoker."Qualifier"
: Specify a version or alias to add permissions to a published version of the function."RevisionId"
: Only update the policy if the revision ID matches the ID that's specified. Use this option to avoid modifying a policy that has changed since you last read it."SourceAccount"
: For Amazon S3, the ID of the account that owns the resource. Use this together with SourceArn to ensure that the resource is owned by the specified account. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account."SourceArn"
: For AWS services, the ARN of the AWS resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.
Main.Lambda.create_alias
— Methodcreate_alias(function_name, function_version, name)
create_alias(function_name, function_version, name, params::Dict{String,<:Any})
Creates an alias for a Lambda function version. Use aliases to provide clients with a function identifier that you can update to invoke a different version. You can also map an alias to split invocation requests between two versions. Use the RoutingConfig parameter to specify a second version and the percentage of invocation requests that it receives.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.function_version
: The function version that the alias invokes.name
: The name of the alias.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Description"
: A description of the alias."RoutingConfig"
: The routing configuration of the alias.
Main.Lambda.create_code_signing_config
— Methodcreate_code_signing_config(allowed_publishers)
create_code_signing_config(allowed_publishers, params::Dict{String,<:Any})
Creates a code signing configuration. A code signing configuration defines a list of allowed signing profiles and defines the code-signing validation policy (action to be taken if deployment validation checks fail).
Arguments
allowed_publishers
: Signing profiles for this code signing configuration.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"CodeSigningPolicies"
: The code signing policies define the actions to take if the validation checks fail."Description"
: Descriptive name for this code signing configuration.
Main.Lambda.create_event_source_mapping
— Methodcreate_event_source_mapping(function_name)
create_event_source_mapping(function_name, params::Dict{String,<:Any})
Creates a mapping between an event source and an AWS Lambda function. Lambda reads items from the event source and triggers the function. For details about each event source type, see the following topics. Using AWS Lambda with Amazon DynamoDB Using AWS Lambda with Amazon Kinesis Using AWS Lambda with Amazon SQS Using AWS Lambda with Amazon MQ Using AWS Lambda with Amazon MSK Using AWS Lambda with Self-Managed Apache Kafka The following error handling options are only available for stream sources (DynamoDB and Kinesis): BisectBatchOnFunctionError - If the function returns an error, split the batch in two and retry. DestinationConfig - Send discarded records to an Amazon SQS queue or Amazon SNS topic. MaximumRecordAgeInSeconds - Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires MaximumRetryAttempts - Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires. ParallelizationFactor - Process multiple batches from each shard concurrently.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Version or Alias ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"BatchSize"
: The maximum number of items to retrieve in a single batch. Amazon Kinesis - Default 100. Max 10,000. Amazon DynamoDB Streams - Default 100. Max 1,000. Amazon Simple Queue Service - Default 10. For standard queues the max is 10,000. For FIFO queues the max is 10. Amazon Managed Streaming for Apache Kafka - Default 100. Max 10,000. Self-Managed Apache Kafka - Default 100. Max 10,000."BisectBatchOnFunctionError"
: (Streams) If the function returns an error, split the batch in two and retry."DestinationConfig"
: (Streams) An Amazon SQS queue or Amazon SNS topic destination for discarded records."Enabled"
: If true, the event source mapping is active. Set to false to pause polling and invocation."EventSourceArn"
: The Amazon Resource Name (ARN) of the event source. Amazon Kinesis- The ARN of the data stream or a stream consumer. Amazon DynamoDB Streams - The ARN of
"FunctionResponseTypes"
: (Streams) A list of current response type enums applied to the event source mapping."MaximumBatchingWindowInSeconds"
: (Streams and SQS standard queues) The maximum amount of time to gather records before invoking the function, in seconds."MaximumRecordAgeInSeconds"
: (Streams) Discard records older than the specified age. The default value is infinite (-1)."MaximumRetryAttempts"
: (Streams) Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records will be retried until the record expires."ParallelizationFactor"
: (Streams) The number of batches to process from each shard concurrently."Queues"
: (MQ) The name of the Amazon MQ broker destination queue to consume."SelfManagedEventSource"
: The Self-Managed Apache Kafka cluster to send records."SourceAccessConfigurations"
: An array of the authentication protocol, or the VPC components to secure your event source."StartingPosition"
: The position in a stream from which to start reading. Required for Amazon Kinesis, Amazon DynamoDB, and Amazon MSK Streams sources. AT_TIMESTAMP is only supported for Amazon Kinesis streams."StartingPositionTimestamp"
: With StartingPosition set to AT_TIMESTAMP, the time from which to start reading."Topics"
: The name of the Kafka topic."TumblingWindowInSeconds"
: (Streams) The duration in seconds of a processing window. The range is between 1 second up to 900 seconds.
Main.Lambda.create_function
— Methodcreate_function(code, function_name, role)
create_function(code, function_name, role, params::Dict{String,<:Any})
Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package is a .zip file archive or container image that contains your function code. The execution role grants the function permission to use AWS services, such as Amazon CloudWatch Logs for log streaming and AWS X-Ray for request tracing. When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The State, StateReason, and StateReasonCode fields in the response from GetFunctionConfiguration indicate when the function is ready to invoke. For more information, see Function States. A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the Publish parameter to create version 1 of your function from its initial configuration. The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with UpdateFunctionConfiguration. Function-level settings apply to both the unpublished and published versions of the function, and include tags (TagResource) and per-function concurrency limits (PutFunctionConcurrency). You can use code signing if your deployment package is a .zip file archive. To enable code signing for this function, specify the ARN of a code-signing configuration. When a user attempts to deploy a code package with UpdateFunctionCode, Lambda checks that the code package has a valid signature from a trusted publisher. The code-signing configuration includes set set of signing profiles, which define the trusted publishers for this function. If another account or an AWS service invokes your function, use AddPermission to grant permission by creating a resource-based IAM policy. You can grant permissions at the function level, on a version, or on an alias. To invoke your function directly, use Invoke. To invoke your function in response to events in other AWS services, create an event source mapping (CreateEventSourceMapping), or configure a function trigger in the other service. For more information, see Invoking Functions.
Arguments
code
: The code for the function.function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.role
: The Amazon Resource Name (ARN) of the function's execution role.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"CodeSigningConfigArn"
: To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function."DeadLetterConfig"
: A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see Dead Letter Queues."Description"
: A description of the function."Environment"
: Environment variables that are accessible from function code during execution."FileSystemConfigs"
: Connection settings for an Amazon EFS file system."Handler"
: The name of the method within your code that Lambda calls to execute your function. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see Programming Model."ImageConfig"
: Container image configuration values that override the values in the container image Dockerfile."KMSKeyArn"
: The ARN of the AWS Key Management Service (AWS KMS) key that's used to encrypt your function's environment variables. If it's not provided, AWS Lambda uses a default service key."Layers"
: A list of function layers to add to the function's execution environment. Specify each layer by its ARN, including the version."MemorySize"
: The amount of memory available to the function at runtime. Increasing the function's memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB."PackageType"
: The type of deployment package. Set to Image for container image and set Zip for ZIP archive."Publish"
: Set to true to publish the first version of the function during creation."Runtime"
: The identifier of the function's runtime."Tags"
: A list of tags to apply to the function."Timeout"
: The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds."TracingConfig"
: Set Mode to Active to sample and trace a subset of incoming requests with AWS X-Ray."VpcConfig"
: For network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more information, see VPC Settings.
Main.Lambda.delete_alias
— Methoddelete_alias(function_name, name)
delete_alias(function_name, name, params::Dict{String,<:Any})
Deletes a Lambda function alias.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.name
: The name of the alias.
Main.Lambda.delete_code_signing_config
— Methoddelete_code_signing_config(code_signing_config_arn)
delete_code_signing_config(code_signing_config_arn, params::Dict{String,<:Any})
Deletes the code signing configuration. You can delete the code signing configuration only if no function is using it.
Arguments
code_signing_config_arn
: The The Amazon Resource Name (ARN) of the code signing configuration.
Main.Lambda.delete_event_source_mapping
— Methoddelete_event_source_mapping(uuid)
delete_event_source_mapping(uuid, params::Dict{String,<:Any})
Deletes an event source mapping. You can get the identifier of a mapping from the output of ListEventSourceMappings. When you delete an event source mapping, it enters a Deleting state and might not be completely deleted for several seconds.
Arguments
uuid
: The identifier of the event source mapping.
Main.Lambda.delete_function
— Methoddelete_function(function_name)
delete_function(function_name, params::Dict{String,<:Any})
Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted. To delete Lambda event source mappings that invoke a function, use DeleteEventSourceMapping. For AWS services and resources that invoke your function directly, delete the trigger in the service where you originally configured it.
Arguments
function_name
: The name of the Lambda function or version. Name formats Function name - my-function (name-only), my-function:1 (with version). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Qualifier"
: Specify a version to delete. You can't delete a version that's referenced by an alias.
Main.Lambda.delete_function_code_signing_config
— Methoddelete_function_code_signing_config(function_name)
delete_function_code_signing_config(function_name, params::Dict{String,<:Any})
Removes the code signing configuration from the function.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Main.Lambda.delete_function_concurrency
— Methoddelete_function_concurrency(function_name)
delete_function_concurrency(function_name, params::Dict{String,<:Any})
Removes a concurrent execution limit from a function.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Main.Lambda.delete_function_event_invoke_config
— Methoddelete_function_event_invoke_config(function_name)
delete_function_event_invoke_config(function_name, params::Dict{String,<:Any})
Deletes the configuration for asynchronous invocation for a function, version, or alias. To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Qualifier"
: A version number or alias name.
Main.Lambda.delete_layer_version
— Methoddelete_layer_version(layer_name, version_number)
delete_layer_version(layer_name, version_number, params::Dict{String,<:Any})
Deletes a version of an AWS Lambda layer. Deleted versions can no longer be viewed or added to functions. To avoid breaking functions, a copy of the version remains in Lambda until no functions refer to it.
Arguments
layer_name
: The name or Amazon Resource Name (ARN) of the layer.version_number
: The version number.
Main.Lambda.delete_provisioned_concurrency_config
— Methoddelete_provisioned_concurrency_config(function_name, qualifier)
delete_provisioned_concurrency_config(function_name, qualifier, params::Dict{String,<:Any})
Deletes the provisioned concurrency configuration for a function.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.qualifier
: The version number or alias name.
Main.Lambda.get_account_settings
— Methodget_account_settings()
get_account_settings(params::Dict{String,<:Any})
Retrieves details about your account's limits and usage in an AWS Region.
Main.Lambda.get_alias
— Methodget_alias(function_name, name)
get_alias(function_name, name, params::Dict{String,<:Any})
Returns details about a Lambda function alias.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.name
: The name of the alias.
Main.Lambda.get_code_signing_config
— Methodget_code_signing_config(code_signing_config_arn)
get_code_signing_config(code_signing_config_arn, params::Dict{String,<:Any})
Returns information about the specified code signing configuration.
Arguments
code_signing_config_arn
: The The Amazon Resource Name (ARN) of the code signing configuration.
Main.Lambda.get_event_source_mapping
— Methodget_event_source_mapping(uuid)
get_event_source_mapping(uuid, params::Dict{String,<:Any})
Returns details about an event source mapping. You can get the identifier of a mapping from the output of ListEventSourceMappings.
Arguments
uuid
: The identifier of the event source mapping.
Main.Lambda.get_function
— Methodget_function(function_name)
get_function(function_name, params::Dict{String,<:Any})
Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are returned.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Qualifier"
: Specify a version or alias to get details about a published version of the function.
Main.Lambda.get_function_code_signing_config
— Methodget_function_code_signing_config(function_name)
get_function_code_signing_config(function_name, params::Dict{String,<:Any})
Returns the code signing configuration for the specified function.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Main.Lambda.get_function_concurrency
— Methodget_function_concurrency(function_name)
get_function_concurrency(function_name, params::Dict{String,<:Any})
Returns details about the reserved concurrency configuration for a function. To set a concurrency limit for a function, use PutFunctionConcurrency.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Main.Lambda.get_function_configuration
— Methodget_function_configuration(function_name)
get_function_configuration(function_name, params::Dict{String,<:Any})
Returns the version-specific settings of a Lambda function or version. The output includes only options that can vary between versions of a function. To modify these settings, use UpdateFunctionConfiguration. To get all of a function's details, including function-level settings, use GetFunction.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Qualifier"
: Specify a version or alias to get details about a published version of the function.
Main.Lambda.get_function_event_invoke_config
— Methodget_function_event_invoke_config(function_name)
get_function_event_invoke_config(function_name, params::Dict{String,<:Any})
Retrieves the configuration for asynchronous invocation for a function, version, or alias. To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Qualifier"
: A version number or alias name.
Main.Lambda.get_layer_version
— Methodget_layer_version(layer_name, version_number)
get_layer_version(layer_name, version_number, params::Dict{String,<:Any})
Returns information about a version of an AWS Lambda layer, with a link to download the layer archive that's valid for 10 minutes.
Arguments
layer_name
: The name or Amazon Resource Name (ARN) of the layer.version_number
: The version number.
Main.Lambda.get_layer_version_by_arn
— Methodget_layer_version_by_arn(arn)
get_layer_version_by_arn(arn, params::Dict{String,<:Any})
Returns information about a version of an AWS Lambda layer, with a link to download the layer archive that's valid for 10 minutes.
Arguments
arn
: The ARN of the layer version.
Main.Lambda.get_layer_version_policy
— Methodget_layer_version_policy(layer_name, version_number)
get_layer_version_policy(layer_name, version_number, params::Dict{String,<:Any})
Returns the permission policy for a version of an AWS Lambda layer. For more information, see AddLayerVersionPermission.
Arguments
layer_name
: The name or Amazon Resource Name (ARN) of the layer.version_number
: The version number.
Main.Lambda.get_policy
— Methodget_policy(function_name)
get_policy(function_name, params::Dict{String,<:Any})
Returns the resource-based IAM policy for a function, version, or alias.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Qualifier"
: Specify a version or alias to get the policy for that resource.
Main.Lambda.get_provisioned_concurrency_config
— Methodget_provisioned_concurrency_config(function_name, qualifier)
get_provisioned_concurrency_config(function_name, qualifier, params::Dict{String,<:Any})
Retrieves the provisioned concurrency configuration for a function's alias or version.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.qualifier
: The version number or alias name.
Main.Lambda.invoke
— Methodinvoke(function_name)
invoke(function_name, params::Dict{String,<:Any})
Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set InvocationType to Event. For synchronous invocation, details about the function response, including errors, are included in the response body and headers. For either invocation type, you can find more information in the execution log and trace. When an error occurs, your function may be invoked multiple times. Retry behavior varies by error type, client, event source, and invocation type. For example, if you invoke a function asynchronously and it returns an error, Lambda executes the function up to two more times. For more information, see Retry Behavior. For asynchronous invocation, Lambda adds events to a queue before sending them to your function. If your function does not have enough capacity to keep up with the queue, events may be lost. Occasionally, your function may receive the same event multiple times, even if no error occurs. To retain events that were not processed, configure your function with a dead-letter queue. The status code in the API response doesn't reflect function errors. Error codes are reserved for errors that prevent your function from executing, such as permissions errors, limit errors, or issues with your function's code and configuration. For example, Lambda returns TooManyRequestsException if executing the function would cause you to exceed a concurrency limit at either the account level (ConcurrentInvocationLimitExceeded) or function level (ReservedFunctionConcurrentInvocationLimitExceeded). For functions with a long timeout, your client might be disconnected during synchronous invocation while it waits for a response. Configure your HTTP client, SDK, firewall, proxy, or operating system to allow for long connections with timeout or keep-alive settings. This operation requires permission for the lambda:InvokeFunction action.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Payload"
: The JSON that you want to provide to your Lambda function as input."Qualifier"
: Specify a version or alias to invoke a published version of the function."X-Amz-Client-Context"
: Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context object."X-Amz-Invocation-Type"
: Choose from the following options. RequestResponse (default) - Invoke the function synchronously. Keep the connection open until the function returns a response or times out. The API response includes the function response and additional data. Event - Invoke the function asynchronously. Send events that fail multiple times to the function's dead-letter queue (if it's configured). The API response only includes a status code. DryRun - Validate parameter values and verify that the user or role has permission to invoke the function."X-Amz-Log-Type"
: Set to Tail to include the execution log in the response.
Main.Lambda.invoke_async
— Methodinvoke_async(function_name, invoke_args)
invoke_async(function_name, invoke_args, params::Dict{String,<:Any})
For asynchronous function invocation, use Invoke. Invokes a function asynchronously.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.invoke_args
: The JSON that you want to provide to your Lambda function as input.
Main.Lambda.list_aliases
— Methodlist_aliases(function_name)
list_aliases(function_name, params::Dict{String,<:Any})
Returns a list of aliases for a Lambda function.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"FunctionVersion"
: Specify a function version to only list aliases that invoke that version."Marker"
: Specify the pagination token that's returned by a previous request to retrieve the next page of results."MaxItems"
: Limit the number of aliases returned.
Main.Lambda.list_code_signing_configs
— Methodlist_code_signing_configs()
list_code_signing_configs(params::Dict{String,<:Any})
Returns a list of code signing configurations. A request returns up to 10,000 configurations per call. You can use the MaxItems parameter to return fewer configurations per call.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Marker"
: Specify the pagination token that's returned by a previous request to retrieve the next page of results."MaxItems"
: Maximum number of items to return.
Main.Lambda.list_event_source_mappings
— Methodlist_event_source_mappings()
list_event_source_mappings(params::Dict{String,<:Any})
Lists event source mappings. Specify an EventSourceArn to only show event source mappings for a single event source.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"EventSourceArn"
: The Amazon Resource Name (ARN) of the event source. Amazon Kinesis- The ARN of the data stream or a stream consumer. Amazon DynamoDB Streams - The ARN of
"FunctionName"
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Version or Alias ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length."Marker"
: A pagination token returned by a previous call."MaxItems"
: The maximum number of event source mappings to return.
Main.Lambda.list_function_event_invoke_configs
— Methodlist_function_event_invoke_configs(function_name)
list_function_event_invoke_configs(function_name, params::Dict{String,<:Any})
Retrieves a list of configurations for asynchronous invocation for a function. To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Marker"
: Specify the pagination token that's returned by a previous request to retrieve the next page of results."MaxItems"
: The maximum number of configurations to return.
Main.Lambda.list_functions
— Methodlist_functions()
list_functions(params::Dict{String,<:Any})
Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call. Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version. The ListFunctions action returns a subset of the FunctionConfiguration fields. To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode) for a function or version, use GetFunction.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"FunctionVersion"
: Set to ALL to include entries for all published versions of each function."Marker"
: Specify the pagination token that's returned by a previous request to retrieve the next page of results."MasterRegion"
: For Lambda@Edge functions, the AWS Region of the master function. For example, us-east-1 filters the list of functions to only include Lambda@Edge functions replicated from a master function in US East (N. Virginia). If specified, you must set FunctionVersion to ALL."MaxItems"
: The maximum number of functions to return in the response. Note that ListFunctions returns a maximum of 50 items in each response, even if you set the number higher.
Main.Lambda.list_functions_by_code_signing_config
— Methodlist_functions_by_code_signing_config(code_signing_config_arn)
list_functions_by_code_signing_config(code_signing_config_arn, params::Dict{String,<:Any})
List the functions that use the specified code signing configuration. You can use this method prior to deleting a code signing configuration, to verify that no functions are using it.
Arguments
code_signing_config_arn
: The The Amazon Resource Name (ARN) of the code signing configuration.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Marker"
: Specify the pagination token that's returned by a previous request to retrieve the next page of results."MaxItems"
: Maximum number of items to return.
Main.Lambda.list_layer_versions
— Methodlist_layer_versions(layer_name)
list_layer_versions(layer_name, params::Dict{String,<:Any})
Lists the versions of an AWS Lambda layer. Versions that have been deleted aren't listed. Specify a runtime identifier to list only versions that indicate that they're compatible with that runtime.
Arguments
layer_name
: The name or Amazon Resource Name (ARN) of the layer.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"CompatibleRuntime"
: A runtime identifier. For example, go1.x."Marker"
: A pagination token returned by a previous call."MaxItems"
: The maximum number of versions to return.
Main.Lambda.list_layers
— Methodlist_layers()
list_layers(params::Dict{String,<:Any})
Lists AWS Lambda layers and shows information about the latest version of each. Specify a runtime identifier to list only layers that indicate that they're compatible with that runtime.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"CompatibleRuntime"
: A runtime identifier. For example, go1.x."Marker"
: A pagination token returned by a previous call."MaxItems"
: The maximum number of layers to return.
Main.Lambda.list_provisioned_concurrency_configs
— Methodlist_provisioned_concurrency_configs(function_name)
list_provisioned_concurrency_configs(function_name, params::Dict{String,<:Any})
Retrieves a list of provisioned concurrency configurations for a function.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Marker"
: Specify the pagination token that's returned by a previous request to retrieve the next page of results."MaxItems"
: Specify a number to limit the number of configurations returned.
Main.Lambda.list_tags
— Methodlist_tags(arn)
list_tags(arn, params::Dict{String,<:Any})
Returns a function's tags. You can also view tags with GetFunction.
Arguments
arn
: The function's Amazon Resource Name (ARN).
Main.Lambda.list_versions_by_function
— Methodlist_versions_by_function(function_name)
list_versions_by_function(function_name, params::Dict{String,<:Any})
Returns a list of versions, with the version-specific configuration of each. Lambda returns up to 50 versions per call.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Marker"
: Specify the pagination token that's returned by a previous request to retrieve the next page of results."MaxItems"
: The maximum number of versions to return.
Main.Lambda.publish_layer_version
— Methodpublish_layer_version(content, layer_name)
publish_layer_version(content, layer_name, params::Dict{String,<:Any})
Creates an AWS Lambda layer from a ZIP archive. Each time you call PublishLayerVersion with the same layer name, a new version is created. Add layers to your function with CreateFunction or UpdateFunctionConfiguration.
Arguments
content
: The function layer archive.layer_name
: The name or Amazon Resource Name (ARN) of the layer.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"CompatibleRuntimes"
: A list of compatible function runtimes. Used for filtering with ListLayers and ListLayerVersions."Description"
: The description of the version."LicenseInfo"
: The layer's software license. It can be any of the following: An SPDX license identifier. For example, MIT. The URL of a license hosted on the internet. For example, https://opensource.org/licenses/MIT. The full text of the license.
Main.Lambda.publish_version
— Methodpublish_version(function_name)
publish_version(function_name, params::Dict{String,<:Any})
Creates a version from the current code and configuration of a function. Use versions to create a snapshot of your function code and configuration that doesn't change. AWS Lambda doesn't publish a version if the function's configuration and code haven't changed since the last version. Use UpdateFunctionCode or UpdateFunctionConfiguration to update the function before publishing a version. Clients can invoke versions directly or with an alias. To create an alias, use CreateAlias.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"CodeSha256"
: Only publish a version if the hash value matches the value that's specified. Use this option to avoid publishing a version if the function code has changed since you last updated it. You can get the hash for the version that you uploaded from the output of UpdateFunctionCode."Description"
: A description for the version to override the description in the function configuration."RevisionId"
: Only update the function if the revision ID matches the ID that's specified. Use this option to avoid publishing a version if the function configuration has changed since you last updated it.
Main.Lambda.put_function_code_signing_config
— Methodput_function_code_signing_config(code_signing_config_arn, function_name)
put_function_code_signing_config(code_signing_config_arn, function_name, params::Dict{String,<:Any})
Update the code signing configuration for the function. Changes to the code signing configuration take effect the next time a user tries to deploy a code package to the function.
Arguments
code_signing_config_arn
: The The Amazon Resource Name (ARN) of the code signing configuration.function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Main.Lambda.put_function_concurrency
— Methodput_function_concurrency(function_name, reserved_concurrent_executions)
put_function_concurrency(function_name, reserved_concurrent_executions, params::Dict{String,<:Any})
Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency level. Concurrency settings apply to the function as a whole, including all published versions and the unpublished version. Reserving concurrency both ensures that your function has capacity to process the specified number of events simultaneously, and prevents it from scaling beyond that level. Use GetFunction to see the current setting for a function. Use GetAccountSettings to see your Regional concurrency limit. You can reserve concurrency for as many functions as you like, as long as you leave at least 100 simultaneous executions unreserved for functions that aren't configured with a per-function limit. For more information, see Managing Concurrency.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.reserved_concurrent_executions
: The number of simultaneous executions to reserve for the function.
Main.Lambda.put_function_event_invoke_config
— Methodput_function_event_invoke_config(function_name)
put_function_event_invoke_config(function_name, params::Dict{String,<:Any})
Configures options for asynchronous invocation on a function, version, or alias. If a configuration already exists for a function, version, or alias, this operation overwrites it. If you exclude any settings, they are removed. To set one option without affecting existing settings for other options, use UpdateFunctionEventInvokeConfig. By default, Lambda retries an asynchronous invocation twice if the function returns an error. It retains events in a queue for up to six hours. When an event fails all processing attempts or stays in the asynchronous invocation queue for too long, Lambda discards it. To retain discarded events, configure a dead-letter queue with UpdateFunctionConfiguration. To send an invocation record to a queue, topic, function, or event bus, specify a destination. You can configure separate destinations for successful invocations (on-success) and events that fail all processing attempts (on-failure). You can configure destinations in addition to or instead of a dead-letter queue.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"DestinationConfig"
: A destination for events after they have been sent to a function for processing. Destinations Function - The Amazon Resource Name (ARN) of a Lambda function. Queue - The ARN of an SQS queue. Topic - The ARN of an SNS topic. Event Bus - The ARN of an Amazon EventBridge event bus."MaximumEventAgeInSeconds"
: The maximum age of a request that Lambda sends to a function for processing."MaximumRetryAttempts"
: The maximum number of times to retry when the function returns an error."Qualifier"
: A version number or alias name.
Main.Lambda.put_provisioned_concurrency_config
— Methodput_provisioned_concurrency_config(function_name, provisioned_concurrent_executions, qualifier)
put_provisioned_concurrency_config(function_name, provisioned_concurrent_executions, qualifier, params::Dict{String,<:Any})
Adds a provisioned concurrency configuration to a function's alias or version.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.provisioned_concurrent_executions
: The amount of provisioned concurrency to allocate for the version or alias.qualifier
: The version number or alias name.
Main.Lambda.remove_layer_version_permission
— Methodremove_layer_version_permission(layer_name, statement_id, version_number)
remove_layer_version_permission(layer_name, statement_id, version_number, params::Dict{String,<:Any})
Removes a statement from the permissions policy for a version of an AWS Lambda layer. For more information, see AddLayerVersionPermission.
Arguments
layer_name
: The name or Amazon Resource Name (ARN) of the layer.statement_id
: The identifier that was specified when the statement was added.version_number
: The version number.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"RevisionId"
: Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a policy that has changed since you last read it.
Main.Lambda.remove_permission
— Methodremove_permission(function_name, statement_id)
remove_permission(function_name, statement_id, params::Dict{String,<:Any})
Revokes function-use permission from an AWS service or another account. You can get the ID of the statement from the output of GetPolicy.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.statement_id
: Statement ID of the permission to remove.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Qualifier"
: Specify a version or alias to remove permissions from a published version of the function."RevisionId"
: Only update the policy if the revision ID matches the ID that's specified. Use this option to avoid modifying a policy that has changed since you last read it.
Main.Lambda.tag_resource
— Methodtag_resource(arn, tags)
tag_resource(arn, tags, params::Dict{String,<:Any})
Adds tags to a function.
Arguments
arn
: The function's Amazon Resource Name (ARN).tags
: A list of tags to apply to the function.
Main.Lambda.untag_resource
— Methoduntag_resource(arn, tag_keys)
untag_resource(arn, tag_keys, params::Dict{String,<:Any})
Removes tags from a function.
Arguments
arn
: The function's Amazon Resource Name (ARN).tag_keys
: A list of tag keys to remove from the function.
Main.Lambda.update_alias
— Methodupdate_alias(function_name, name)
update_alias(function_name, name, params::Dict{String,<:Any})
Updates the configuration of a Lambda function alias.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.name
: The name of the alias.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Description"
: A description of the alias."FunctionVersion"
: The function version that the alias invokes."RevisionId"
: Only update the alias if the revision ID matches the ID that's specified. Use this option to avoid modifying an alias that has changed since you last read it."RoutingConfig"
: The routing configuration of the alias.
Main.Lambda.update_code_signing_config
— Methodupdate_code_signing_config(code_signing_config_arn)
update_code_signing_config(code_signing_config_arn, params::Dict{String,<:Any})
Update the code signing configuration. Changes to the code signing configuration take effect the next time a user tries to deploy a code package to the function.
Arguments
code_signing_config_arn
: The The Amazon Resource Name (ARN) of the code signing configuration.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"AllowedPublishers"
: Signing profiles for this code signing configuration."CodeSigningPolicies"
: The code signing policy."Description"
: Descriptive name for this code signing configuration.
Main.Lambda.update_event_source_mapping
— Methodupdate_event_source_mapping(uuid)
update_event_source_mapping(uuid, params::Dict{String,<:Any})
Updates an event source mapping. You can change the function that AWS Lambda invokes, or pause invocation and resume later from the same location. The following error handling options are only available for stream sources (DynamoDB and Kinesis): BisectBatchOnFunctionError - If the function returns an error, split the batch in two and retry. DestinationConfig - Send discarded records to an Amazon SQS queue or Amazon SNS topic. MaximumRecordAgeInSeconds - Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires MaximumRetryAttempts - Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires. ParallelizationFactor - Process multiple batches from each shard concurrently.
Arguments
uuid
: The identifier of the event source mapping.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"BatchSize"
: The maximum number of items to retrieve in a single batch. Amazon Kinesis - Default 100. Max 10,000. Amazon DynamoDB Streams - Default 100. Max 1,000. Amazon Simple Queue Service - Default 10. For standard queues the max is 10,000. For FIFO queues the max is 10. Amazon Managed Streaming for Apache Kafka - Default 100. Max 10,000. Self-Managed Apache Kafka - Default 100. Max 10,000."BisectBatchOnFunctionError"
: (Streams) If the function returns an error, split the batch in two and retry."DestinationConfig"
: (Streams) An Amazon SQS queue or Amazon SNS topic destination for discarded records."Enabled"
: If true, the event source mapping is active. Set to false to pause polling and invocation."FunctionName"
: The name of the Lambda function. Name formats Function name - MyFunction. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction. Version or Alias ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD. Partial ARN - 123456789012:function:MyFunction. The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length."FunctionResponseTypes"
: (Streams) A list of current response type enums applied to the event source mapping."MaximumBatchingWindowInSeconds"
: (Streams and SQS standard queues) The maximum amount of time to gather records before invoking the function, in seconds."MaximumRecordAgeInSeconds"
: (Streams) Discard records older than the specified age. The default value is infinite (-1)."MaximumRetryAttempts"
: (Streams) Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records will be retried until the record expires."ParallelizationFactor"
: (Streams) The number of batches to process from each shard concurrently."SourceAccessConfigurations"
: An array of the authentication protocol, or the VPC components to secure your event source."TumblingWindowInSeconds"
: (Streams) The duration in seconds of a processing window. The range is between 1 second up to 900 seconds.
Main.Lambda.update_function_code
— Methodupdate_function_code(function_name)
update_function_code(function_name, params::Dict{String,<:Any})
Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see Configuring code signing. The function's code is locked when you publish a version. You can't modify the code of a published version, only the unpublished version. For a function defined as a container image, Lambda resolves the image tag to an image digest. In Amazon ECR, if you update the image tag to a new image, Lambda does not automatically update the function.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"DryRun"
: Set to true to validate the request parameters and access permissions without modifying the function code."ImageUri"
: URI of a container image in the Amazon ECR registry."Publish"
: Set to true to publish a new version of the function after updating the code. This has the same effect as calling PublishVersion separately."RevisionId"
: Only update the function if the revision ID matches the ID that's specified. Use this option to avoid modifying a function that has changed since you last read it."S3Bucket"
: An Amazon S3 bucket in the same AWS Region as your function. The bucket can be in a different AWS account."S3Key"
: The Amazon S3 key of the deployment package."S3ObjectVersion"
: For versioned objects, the version of the deployment package object to use."ZipFile"
: The base64-encoded contents of the deployment package. AWS SDK and AWS CLI clients handle the encoding for you.
Main.Lambda.update_function_configuration
— Methodupdate_function_configuration(function_name)
update_function_configuration(function_name, params::Dict{String,<:Any})
Modify the version-specific settings of a Lambda function. When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute. During this time, you can't modify the function, but you can still invoke it. The LastUpdateStatus, LastUpdateStatusReason, and LastUpdateStatusReasonCode fields in the response from GetFunctionConfiguration indicate when the update is complete and the function is processing events with the new configuration. For more information, see Function States. These settings can vary between versions of a function and are locked when you publish a version. You can't modify the configuration of a published version, only the unpublished version. To configure function concurrency, use PutFunctionConcurrency. To grant invoke permissions to an account or AWS service, use AddPermission.
Arguments
function_name
: The name of the Lambda function. Name formats Function name - my-function. Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"DeadLetterConfig"
: A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see Dead Letter Queues."Description"
: A description of the function."Environment"
: Environment variables that are accessible from function code during execution."FileSystemConfigs"
: Connection settings for an Amazon EFS file system."Handler"
: The name of the method within your code that Lambda calls to execute your function. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see Programming Model."ImageConfig"
: Container image configuration values that override the values in the container image Dockerfile."KMSKeyArn"
: The ARN of the AWS Key Management Service (AWS KMS) key that's used to encrypt your function's environment variables. If it's not provided, AWS Lambda uses a default service key."Layers"
: A list of function layers to add to the function's execution environment. Specify each layer by its ARN, including the version."MemorySize"
: The amount of memory available to the function at runtime. Increasing the function's memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB."RevisionId"
: Only update the function if the revision ID matches the ID that's specified. Use this option to avoid modifying a function that has changed since you last read it."Role"
: The Amazon Resource Name (ARN) of the function's execution role."Runtime"
: The identifier of the function's runtime."Timeout"
: The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds."TracingConfig"
: Set Mode to Active to sample and trace a subset of incoming requests with AWS X-Ray."VpcConfig"
: For network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more information, see VPC Settings.
Main.Lambda.update_function_event_invoke_config
— Methodupdate_function_event_invoke_config(function_name)
update_function_event_invoke_config(function_name, params::Dict{String,<:Any})
Updates the configuration for asynchronous invocation for a function, version, or alias. To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.
Arguments
function_name
: The name of the Lambda function, version, or alias. Name formats Function name - my-function (name-only), my-function:v1 (with alias). Function ARN - arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN - 123456789012:function:my-function. You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"DestinationConfig"
: A destination for events after they have been sent to a function for processing. Destinations Function - The Amazon Resource Name (ARN) of a Lambda function. Queue - The ARN of an SQS queue. Topic - The ARN of an SNS topic. Event Bus - The ARN of an Amazon EventBridge event bus."MaximumEventAgeInSeconds"
: The maximum age of a request that Lambda sends to a function for processing."MaximumRetryAttempts"
: The maximum number of times to retry when the function returns an error."Qualifier"
: A version number or alias name.