github.com/aavshr/aws-sdk-go@v1.41.3/models/apis/lambda/2015-03-31/docs-2.json (about)

     1  {
     2    "version": "2.0",
     3    "service": "<fullname>Lambda</fullname> <p> <b>Overview</b> </p> <p>This is the <i>Lambda API Reference</i>. The Lambda Developer Guide provides additional information. For the service overview, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/welcome.html\">What is Lambda</a>, and for information about how the service works, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html\">Lambda: How it Works</a> in the <b>Lambda Developer Guide</b>.</p>",
     4    "operations": {
     5      "AddLayerVersionPermission": "<p>Adds permissions to the resource-based policy of a version of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>. Use this action to grant layer usage permission to other accounts. You can grant permission to a single account, all accounts in an organization, or all Amazon Web Services accounts. </p> <p>To revoke permission, call <a>RemoveLayerVersionPermission</a> with the statement ID that you specified when you added it.</p>",
     6      "AddPermission": "<p>Grants an Amazon Web Services 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. Note: Lambda does not support adding policies to version $LATEST.</p> <p>To grant permission to another account, specify the account ID as the <code>Principal</code>. For Amazon Web Services services, the principal is a domain-style identifier defined by the service, like <code>s3.amazonaws.com</code> or <code>sns.amazonaws.com</code>. For Amazon Web Services services, you can also specify the ARN of the associated resource as the <code>SourceArn</code>. 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.</p> <p>This action adds a statement to a resource-based permissions policy for the function. For more information about function policies, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html\">Lambda Function Policies</a>. </p>",
     7      "CreateAlias": "<p>Creates an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html\">alias</a> for a Lambda function version. Use aliases to provide clients with a function identifier that you can update to invoke a different version.</p> <p>You can also map an alias to split invocation requests between two versions. Use the <code>RoutingConfig</code> parameter to specify a second version and the percentage of invocation requests that it receives.</p>",
     8      "CreateCodeSigningConfig": "<p>Creates a code signing configuration. A <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html\">code signing configuration</a> defines a list of allowed signing profiles and defines the code-signing validation policy (action to be taken if deployment validation checks fail). </p>",
     9      "CreateEventSourceMapping": "<p>Creates a mapping between an event source and an Lambda function. Lambda reads items from the event source and triggers the function.</p> <p>For details about each event source type, see the following topics. </p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping\"> Configuring a Dynamo DB stream as an event source</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping\"> Configuring a Kinesis stream as an event source</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource\"> Configuring an Amazon SQS queue as an event source</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping\"> Configuring an MQ broker as an event source</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html\"> Configuring MSK as an event source</a> </p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html\"> Configuring Self-Managed Apache Kafka as an event source</a> </p> </li> </ul> <p>The following error handling options are only available for stream sources (DynamoDB and Kinesis):</p> <ul> <li> <p> <code>BisectBatchOnFunctionError</code> - If the function returns an error, split the batch in two and retry.</p> </li> <li> <p> <code>DestinationConfig</code> - Send discarded records to an Amazon SQS queue or Amazon SNS topic.</p> </li> <li> <p> <code>MaximumRecordAgeInSeconds</code> - 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</p> </li> <li> <p> <code>MaximumRetryAttempts</code> - 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.</p> </li> <li> <p> <code>ParallelizationFactor</code> - Process multiple batches from each shard concurrently.</p> </li> </ul>",
    10      "CreateFunction": "<p>Creates a Lambda function. To create a function, you need a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html\">deployment package</a> and an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role\">execution role</a>. 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 Amazon Web Services services, such as Amazon CloudWatch Logs for log streaming and X-Ray for request tracing.</p> <p>You set the package type to <code>Image</code> if the deployment package is a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html\">container image</a>. For a container image, the code property must include the URI of a container image in the Amazon ECR registry. You do not need to specify the handler and runtime properties. </p> <p>You set the package type to <code>Zip</code> if the deployment package is a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip\">.zip file archive</a>. For a .zip file archive, the code property specifies the location of the .zip file. You must also specify the handler and runtime properties. The code in the deployment package must be compatible with the target instruction set architecture of the function (<code>x86-64</code> or <code>arm64</code>). If you do not specify the architecture, the default value is <code>x86-64</code>.</p> <p>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 <code>State</code>, <code>StateReason</code>, and <code>StateReasonCode</code> fields in the response from <a>GetFunctionConfiguration</a> indicate when the function is ready to invoke. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html\">Function States</a>.</p> <p>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 <code>Publish</code> parameter to create version <code>1</code> of your function from its initial configuration.</p> <p>The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with <a>UpdateFunctionConfiguration</a>. Function-level settings apply to both the unpublished and published versions of the function, and include tags (<a>TagResource</a>) and per-function concurrency limits (<a>PutFunctionConcurrency</a>).</p> <p>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 <a>UpdateFunctionCode</a>, 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.</p> <p>If another account or an Amazon Web Services service invokes your function, use <a>AddPermission</a> 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.</p> <p>To invoke your function directly, use <a>Invoke</a>. To invoke your function in response to events in other Amazon Web Services services, create an event source mapping (<a>CreateEventSourceMapping</a>), or configure a function trigger in the other service. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html\">Invoking Functions</a>.</p>",
    11      "DeleteAlias": "<p>Deletes a Lambda function <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html\">alias</a>.</p>",
    12      "DeleteCodeSigningConfig": "<p>Deletes the code signing configuration. You can delete the code signing configuration only if no function is using it. </p>",
    13      "DeleteEventSourceMapping": "<p>Deletes an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/intro-invocation-modes.html\">event source mapping</a>. You can get the identifier of a mapping from the output of <a>ListEventSourceMappings</a>.</p> <p>When you delete an event source mapping, it enters a <code>Deleting</code> state and might not be completely deleted for several seconds.</p>",
    14      "DeleteFunction": "<p>Deletes a Lambda function. To delete a specific function version, use the <code>Qualifier</code> parameter. Otherwise, all versions and aliases are deleted.</p> <p>To delete Lambda event source mappings that invoke a function, use <a>DeleteEventSourceMapping</a>. For Amazon Web Services services and resources that invoke your function directly, delete the trigger in the service where you originally configured it.</p>",
    15      "DeleteFunctionCodeSigningConfig": "<p>Removes the code signing configuration from the function.</p>",
    16      "DeleteFunctionConcurrency": "<p>Removes a concurrent execution limit from a function.</p>",
    17      "DeleteFunctionEventInvokeConfig": "<p>Deletes the configuration for asynchronous invocation for a function, version, or alias.</p> <p>To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.</p>",
    18      "DeleteLayerVersion": "<p>Deletes a version of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>. 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.</p>",
    19      "DeleteProvisionedConcurrencyConfig": "<p>Deletes the provisioned concurrency configuration for a function.</p>",
    20      "GetAccountSettings": "<p>Retrieves details about your account's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/limits.html\">limits</a> and usage in an Amazon Web Services Region.</p>",
    21      "GetAlias": "<p>Returns details about a Lambda function <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html\">alias</a>.</p>",
    22      "GetCodeSigningConfig": "<p>Returns information about the specified code signing configuration.</p>",
    23      "GetEventSourceMapping": "<p>Returns details about an event source mapping. You can get the identifier of a mapping from the output of <a>ListEventSourceMappings</a>.</p>",
    24      "GetFunction": "<p>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.</p>",
    25      "GetFunctionCodeSigningConfig": "<p>Returns the code signing configuration for the specified function.</p>",
    26      "GetFunctionConcurrency": "<p>Returns details about the reserved concurrency configuration for a function. To set a concurrency limit for a function, use <a>PutFunctionConcurrency</a>.</p>",
    27      "GetFunctionConfiguration": "<p>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 <a>UpdateFunctionConfiguration</a>.</p> <p>To get all of a function's details, including function-level settings, use <a>GetFunction</a>.</p>",
    28      "GetFunctionEventInvokeConfig": "<p>Retrieves the configuration for asynchronous invocation for a function, version, or alias.</p> <p>To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.</p>",
    29      "GetLayerVersion": "<p>Returns information about a version of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>, with a link to download the layer archive that's valid for 10 minutes.</p>",
    30      "GetLayerVersionByArn": "<p>Returns information about a version of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>, with a link to download the layer archive that's valid for 10 minutes.</p>",
    31      "GetLayerVersionPolicy": "<p>Returns the permission policy for a version of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>. For more information, see <a>AddLayerVersionPermission</a>.</p>",
    32      "GetPolicy": "<p>Returns the <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html\">resource-based IAM policy</a> for a function, version, or alias.</p>",
    33      "GetProvisionedConcurrencyConfig": "<p>Retrieves the provisioned concurrency configuration for a function's alias or version.</p>",
    34      "Invoke": "<p>Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set <code>InvocationType</code> to <code>Event</code>.</p> <p>For <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-sync.html\">synchronous invocation</a>, 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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/monitoring-functions.html\">execution log</a> and <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-x-ray.html\">trace</a>.</p> <p>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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/retries-on-errors.html\">Retry Behavior</a>.</p> <p>For <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html\">asynchronous invocation</a>, 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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq\">dead-letter queue</a>.</p> <p>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, <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/limits.html\">limit errors</a>, or issues with your function's code and configuration. For example, Lambda returns <code>TooManyRequestsException</code> if executing the function would cause you to exceed a concurrency limit at either the account level (<code>ConcurrentInvocationLimitExceeded</code>) or function level (<code>ReservedFunctionConcurrentInvocationLimitExceeded</code>).</p> <p>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.</p> <p>This operation requires permission for the <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/list_awslambda.html\">lambda:InvokeFunction</a> action.</p>",
    35      "InvokeAsync": "<important> <p>For asynchronous function invocation, use <a>Invoke</a>.</p> </important> <p>Invokes a function asynchronously.</p>",
    36      "ListAliases": "<p>Returns a list of <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html\">aliases</a> for a Lambda function.</p>",
    37      "ListCodeSigningConfigs": "<p>Returns a list of <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuring-codesigning.html\">code signing configurations</a>. A request returns up to 10,000 configurations per call. You can use the <code>MaxItems</code> parameter to return fewer configurations per call. </p>",
    38      "ListEventSourceMappings": "<p>Lists event source mappings. Specify an <code>EventSourceArn</code> to only show event source mappings for a single event source.</p>",
    39      "ListFunctionEventInvokeConfigs": "<p>Retrieves a list of configurations for asynchronous invocation for a function.</p> <p>To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.</p>",
    40      "ListFunctions": "<p>Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call.</p> <p>Set <code>FunctionVersion</code> to <code>ALL</code> to include all published versions of each function in addition to the unpublished version. </p> <note> <p>The <code>ListFunctions</code> action returns a subset of the <a>FunctionConfiguration</a> fields. To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus, LastUpdateStatusReason, LastUpdateStatusReasonCode) for a function or version, use <a>GetFunction</a>.</p> </note>",
    41      "ListFunctionsByCodeSigningConfig": "<p>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.</p>",
    42      "ListLayerVersions": "<p>Lists the versions of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>. Versions that have been deleted aren't listed. Specify a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html\">runtime identifier</a> to list only versions that indicate that they're compatible with that runtime. Specify a compatible architecture to include only layer versions that are compatible with that architecture.</p>",
    43      "ListLayers": "<p>Lists <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-layers.html\">Lambda layers</a> and shows information about the latest version of each. Specify a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html\">runtime identifier</a> to list only layers that indicate that they're compatible with that runtime. Specify a compatible architecture to include only layers that are compatible with that <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html\">instruction set architecture</a>.</p>",
    44      "ListProvisionedConcurrencyConfigs": "<p>Retrieves a list of provisioned concurrency configurations for a function.</p>",
    45      "ListTags": "<p>Returns a function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/tagging.html\">tags</a>. You can also view tags with <a>GetFunction</a>.</p>",
    46      "ListVersionsByFunction": "<p>Returns a list of <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html\">versions</a>, with the version-specific configuration of each. Lambda returns up to 50 versions per call.</p>",
    47      "PublishLayerVersion": "<p>Creates an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a> from a ZIP archive. Each time you call <code>PublishLayerVersion</code> with the same layer name, a new version is created.</p> <p>Add layers to your function with <a>CreateFunction</a> or <a>UpdateFunctionConfiguration</a>.</p>",
    48      "PublishVersion": "<p>Creates a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html\">version</a> 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.</p> <p>Lambda doesn't publish a version if the function's configuration and code haven't changed since the last version. Use <a>UpdateFunctionCode</a> or <a>UpdateFunctionConfiguration</a> to update the function before publishing a version.</p> <p>Clients can invoke versions directly or with an alias. To create an alias, use <a>CreateAlias</a>.</p>",
    49      "PutFunctionCodeSigningConfig": "<p>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. </p>",
    50      "PutFunctionConcurrency": "<p>Sets the maximum number of simultaneous executions for a function, and reserves capacity for that concurrency level.</p> <p>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 <a>GetFunction</a> to see the current setting for a function.</p> <p>Use <a>GetAccountSettings</a> 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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html\">Managing Concurrency</a>.</p>",
    51      "PutFunctionEventInvokeConfig": "<p>Configures options for <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html\">asynchronous invocation</a> 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 <a>UpdateFunctionEventInvokeConfig</a>.</p> <p>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 <a>UpdateFunctionConfiguration</a>.</p> <p>To send an invocation record to a queue, topic, function, or event bus, specify a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations\">destination</a>. 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.</p>",
    52      "PutProvisionedConcurrencyConfig": "<p>Adds a provisioned concurrency configuration to a function's alias or version.</p>",
    53      "RemoveLayerVersionPermission": "<p>Removes a statement from the permissions policy for a version of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>. For more information, see <a>AddLayerVersionPermission</a>.</p>",
    54      "RemovePermission": "<p>Revokes function-use permission from an Amazon Web Services service or another account. You can get the ID of the statement from the output of <a>GetPolicy</a>.</p>",
    55      "TagResource": "<p>Adds <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/tagging.html\">tags</a> to a function.</p>",
    56      "UntagResource": "<p>Removes <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/tagging.html\">tags</a> from a function.</p>",
    57      "UpdateAlias": "<p>Updates the configuration of a Lambda function <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html\">alias</a>.</p>",
    58      "UpdateCodeSigningConfig": "<p>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. </p>",
    59      "UpdateEventSourceMapping": "<p>Updates an event source mapping. You can change the function that Lambda invokes, or pause invocation and resume later from the same location.</p> <p>The following error handling options are only available for stream sources (DynamoDB and Kinesis):</p> <ul> <li> <p> <code>BisectBatchOnFunctionError</code> - If the function returns an error, split the batch in two and retry.</p> </li> <li> <p> <code>DestinationConfig</code> - Send discarded records to an Amazon SQS queue or Amazon SNS topic.</p> </li> <li> <p> <code>MaximumRecordAgeInSeconds</code> - 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</p> </li> <li> <p> <code>MaximumRetryAttempts</code> - 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.</p> </li> <li> <p> <code>ParallelizationFactor</code> - Process multiple batches from each shard concurrently.</p> </li> </ul>",
    60      "UpdateFunctionCode": "<p>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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html\">Configuring code signing</a>.</p> <p>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.</p> <note> <p>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.</p> </note>",
    61      "UpdateFunctionConfiguration": "<p>Modify the version-specific settings of a Lambda function.</p> <p>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 <code>LastUpdateStatus</code>, <code>LastUpdateStatusReason</code>, and <code>LastUpdateStatusReasonCode</code> fields in the response from <a>GetFunctionConfiguration</a> indicate when the update is complete and the function is processing events with the new configuration. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html\">Function States</a>.</p> <p>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.</p> <p>To configure function concurrency, use <a>PutFunctionConcurrency</a>. To grant invoke permissions to an account or Amazon Web Services service, use <a>AddPermission</a>.</p>",
    62      "UpdateFunctionEventInvokeConfig": "<p>Updates the configuration for asynchronous invocation for a function, version, or alias.</p> <p>To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.</p>"
    63    },
    64    "shapes": {
    65      "AccountLimit": {
    66        "base": "<p>Limits that are related to concurrency and storage. All file and storage sizes are in bytes.</p>",
    67        "refs": {
    68          "GetAccountSettingsResponse$AccountLimit": "<p>Limits that are related to concurrency and code storage.</p>"
    69        }
    70      },
    71      "AccountUsage": {
    72        "base": "<p>The number of functions and amount of storage in use.</p>",
    73        "refs": {
    74          "GetAccountSettingsResponse$AccountUsage": "<p>The number of functions and amount of storage in use.</p>"
    75        }
    76      },
    77      "Action": {
    78        "base": null,
    79        "refs": {
    80          "AddPermissionRequest$Action": "<p>The action that the principal can use on the function. For example, <code>lambda:InvokeFunction</code> or <code>lambda:GetFunction</code>.</p>"
    81        }
    82      },
    83      "AddLayerVersionPermissionRequest": {
    84        "base": null,
    85        "refs": {
    86        }
    87      },
    88      "AddLayerVersionPermissionResponse": {
    89        "base": null,
    90        "refs": {
    91        }
    92      },
    93      "AddPermissionRequest": {
    94        "base": null,
    95        "refs": {
    96        }
    97      },
    98      "AddPermissionResponse": {
    99        "base": null,
   100        "refs": {
   101        }
   102      },
   103      "AdditionalVersion": {
   104        "base": null,
   105        "refs": {
   106          "AdditionalVersionWeights$key": null
   107        }
   108      },
   109      "AdditionalVersionWeights": {
   110        "base": null,
   111        "refs": {
   112          "AliasRoutingConfiguration$AdditionalVersionWeights": "<p>The second version, and the percentage of traffic that's routed to it.</p>"
   113        }
   114      },
   115      "Alias": {
   116        "base": null,
   117        "refs": {
   118          "AliasConfiguration$Name": "<p>The name of the alias.</p>",
   119          "CreateAliasRequest$Name": "<p>The name of the alias.</p>",
   120          "DeleteAliasRequest$Name": "<p>The name of the alias.</p>",
   121          "GetAliasRequest$Name": "<p>The name of the alias.</p>",
   122          "UpdateAliasRequest$Name": "<p>The name of the alias.</p>"
   123        }
   124      },
   125      "AliasConfiguration": {
   126        "base": "<p>Provides configuration information about a Lambda function <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html\">alias</a>.</p>",
   127        "refs": {
   128          "AliasList$member": null
   129        }
   130      },
   131      "AliasList": {
   132        "base": null,
   133        "refs": {
   134          "ListAliasesResponse$Aliases": "<p>A list of aliases.</p>"
   135        }
   136      },
   137      "AliasRoutingConfiguration": {
   138        "base": "<p>The <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html\">traffic-shifting</a> configuration of a Lambda function alias.</p>",
   139        "refs": {
   140          "AliasConfiguration$RoutingConfig": "<p>The <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html\">routing configuration</a> of the alias.</p>",
   141          "CreateAliasRequest$RoutingConfig": "<p>The <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing\">routing configuration</a> of the alias.</p>",
   142          "UpdateAliasRequest$RoutingConfig": "<p>The <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing\">routing configuration</a> of the alias.</p>"
   143        }
   144      },
   145      "AllowedPublishers": {
   146        "base": "<p>List of signing profiles that can sign a code package. </p>",
   147        "refs": {
   148          "CodeSigningConfig$AllowedPublishers": "<p>List of allowed publishers.</p>",
   149          "CreateCodeSigningConfigRequest$AllowedPublishers": "<p>Signing profiles for this code signing configuration.</p>",
   150          "UpdateCodeSigningConfigRequest$AllowedPublishers": "<p>Signing profiles for this code signing configuration.</p>"
   151        }
   152      },
   153      "Architecture": {
   154        "base": null,
   155        "refs": {
   156          "ArchitecturesList$member": null,
   157          "CompatibleArchitectures$member": null,
   158          "ListLayerVersionsRequest$CompatibleArchitecture": "<p>The compatible <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html\">instruction set architecture</a>.</p>",
   159          "ListLayersRequest$CompatibleArchitecture": "<p>The compatible <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html\">instruction set architecture</a>.</p>"
   160        }
   161      },
   162      "ArchitecturesList": {
   163        "base": null,
   164        "refs": {
   165          "CreateFunctionRequest$Architectures": "<p>The instruction set architecture that the function supports. Enter a string array with one of the valid values. The default value is <code>x86_64</code>.</p>",
   166          "FunctionConfiguration$Architectures": "<p>The instruction set architecture that the function supports. Architecture is a string array with one of the valid values. The default architecture value is <code>x86_64</code>.</p>",
   167          "UpdateFunctionCodeRequest$Architectures": "<p>The instruction set architecture that the function supports. Enter a string array with one of the valid values. The default value is <code>x86_64</code>.</p>"
   168        }
   169      },
   170      "Arn": {
   171        "base": null,
   172        "refs": {
   173          "AddPermissionRequest$SourceArn": "<p>For Amazon Web Services services, the ARN of the Amazon Web Services resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.</p> <p>Note that Lambda configures the comparison using the <code>StringLike</code> operator.</p>",
   174          "CreateEventSourceMappingRequest$EventSourceArn": "<p>The Amazon Resource Name (ARN) of the event source.</p> <ul> <li> <p> <b>Amazon Kinesis</b> - The ARN of the data stream or a stream consumer.</p> </li> <li> <p> <b>Amazon DynamoDB Streams</b> - The ARN of the stream.</p> </li> <li> <p> <b>Amazon Simple Queue Service</b> - The ARN of the queue.</p> </li> <li> <p> <b>Amazon Managed Streaming for Apache Kafka</b> - The ARN of the cluster.</p> </li> </ul>",
   175          "EventSourceMappingConfiguration$EventSourceArn": "<p>The Amazon Resource Name (ARN) of the event source.</p>",
   176          "FunctionConfiguration$SigningProfileVersionArn": "<p>The ARN of the signing profile version.</p>",
   177          "FunctionConfiguration$SigningJobArn": "<p>The ARN of the signing job.</p>",
   178          "Layer$SigningProfileVersionArn": "<p>The Amazon Resource Name (ARN) for a signing profile version.</p>",
   179          "Layer$SigningJobArn": "<p>The Amazon Resource Name (ARN) of a signing job.</p>",
   180          "ListEventSourceMappingsRequest$EventSourceArn": "<p>The Amazon Resource Name (ARN) of the event source.</p> <ul> <li> <p> <b>Amazon Kinesis</b> - The ARN of the data stream or a stream consumer.</p> </li> <li> <p> <b>Amazon DynamoDB Streams</b> - The ARN of the stream.</p> </li> <li> <p> <b>Amazon Simple Queue Service</b> - The ARN of the queue.</p> </li> <li> <p> <b>Amazon Managed Streaming for Apache Kafka</b> - The ARN of the cluster.</p> </li> </ul>",
   181          "SigningProfileVersionArns$member": null
   182        }
   183      },
   184      "BatchSize": {
   185        "base": null,
   186        "refs": {
   187          "CreateEventSourceMappingRequest$BatchSize": "<p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation (6 MB).</p> <ul> <li> <p> <b>Amazon Kinesis</b> - Default 100. Max 10,000.</p> </li> <li> <p> <b>Amazon DynamoDB Streams</b> - Default 100. Max 1,000.</p> </li> <li> <p> <b>Amazon Simple Queue Service</b> - Default 10. For standard queues the max is 10,000. For FIFO queues the max is 10.</p> </li> <li> <p> <b>Amazon Managed Streaming for Apache Kafka</b> - Default 100. Max 10,000.</p> </li> <li> <p> <b>Self-Managed Apache Kafka</b> - Default 100. Max 10,000.</p> </li> </ul>",
   188          "EventSourceMappingConfiguration$BatchSize": "<p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation (6 MB).</p> <p>Default value: Varies by service. For Amazon SQS, the default is 10. For all other services, the default is 100.</p> <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>",
   189          "UpdateEventSourceMappingRequest$BatchSize": "<p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation (6 MB).</p> <ul> <li> <p> <b>Amazon Kinesis</b> - Default 100. Max 10,000.</p> </li> <li> <p> <b>Amazon DynamoDB Streams</b> - Default 100. Max 1,000.</p> </li> <li> <p> <b>Amazon Simple Queue Service</b> - Default 10. For standard queues the max is 10,000. For FIFO queues the max is 10.</p> </li> <li> <p> <b>Amazon Managed Streaming for Apache Kafka</b> - Default 100. Max 10,000.</p> </li> <li> <p> <b>Self-Managed Apache Kafka</b> - Default 100. Max 10,000.</p> </li> </ul>"
   190        }
   191      },
   192      "BisectBatchOnFunctionError": {
   193        "base": null,
   194        "refs": {
   195          "CreateEventSourceMappingRequest$BisectBatchOnFunctionError": "<p>(Streams only) If the function returns an error, split the batch in two and retry.</p>",
   196          "EventSourceMappingConfiguration$BisectBatchOnFunctionError": "<p>(Streams only) If the function returns an error, split the batch in two and retry. The default value is false.</p>",
   197          "UpdateEventSourceMappingRequest$BisectBatchOnFunctionError": "<p>(Streams only) If the function returns an error, split the batch in two and retry.</p>"
   198        }
   199      },
   200      "Blob": {
   201        "base": null,
   202        "refs": {
   203          "FunctionCode$ZipFile": "<p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.</p>",
   204          "InvocationRequest$Payload": "<p>The JSON that you want to provide to your Lambda function as input.</p>",
   205          "InvocationResponse$Payload": "<p>The response from the function, or an error object.</p>",
   206          "LayerVersionContentInput$ZipFile": "<p>The base64-encoded contents of the layer archive. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.</p>",
   207          "UpdateFunctionCodeRequest$ZipFile": "<p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.</p>"
   208        }
   209      },
   210      "BlobStream": {
   211        "base": null,
   212        "refs": {
   213          "InvokeAsyncRequest$InvokeArgs": "<p>The JSON that you want to provide to your Lambda function as input.</p>"
   214        }
   215      },
   216      "Boolean": {
   217        "base": null,
   218        "refs": {
   219          "CreateFunctionRequest$Publish": "<p>Set to true to publish the first version of the function during creation.</p>",
   220          "UpdateFunctionCodeRequest$Publish": "<p>Set to true to publish a new version of the function after updating the code. This has the same effect as calling <a>PublishVersion</a> separately.</p>",
   221          "UpdateFunctionCodeRequest$DryRun": "<p>Set to true to validate the request parameters and access permissions without modifying the function code.</p>"
   222        }
   223      },
   224      "CodeSigningConfig": {
   225        "base": "<p>Details about a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html\">Code signing configuration</a>. </p>",
   226        "refs": {
   227          "CodeSigningConfigList$member": null,
   228          "CreateCodeSigningConfigResponse$CodeSigningConfig": "<p>The code signing configuration.</p>",
   229          "GetCodeSigningConfigResponse$CodeSigningConfig": "<p>The code signing configuration</p>",
   230          "UpdateCodeSigningConfigResponse$CodeSigningConfig": "<p>The code signing configuration</p>"
   231        }
   232      },
   233      "CodeSigningConfigArn": {
   234        "base": null,
   235        "refs": {
   236          "CodeSigningConfig$CodeSigningConfigArn": "<p>The Amazon Resource Name (ARN) of the Code signing configuration.</p>",
   237          "CreateFunctionRequest$CodeSigningConfigArn": "<p>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.</p>",
   238          "DeleteCodeSigningConfigRequest$CodeSigningConfigArn": "<p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>",
   239          "GetCodeSigningConfigRequest$CodeSigningConfigArn": "<p>The The Amazon Resource Name (ARN) of the code signing configuration. </p>",
   240          "GetFunctionCodeSigningConfigResponse$CodeSigningConfigArn": "<p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>",
   241          "ListFunctionsByCodeSigningConfigRequest$CodeSigningConfigArn": "<p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>",
   242          "PutFunctionCodeSigningConfigRequest$CodeSigningConfigArn": "<p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>",
   243          "PutFunctionCodeSigningConfigResponse$CodeSigningConfigArn": "<p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>",
   244          "UpdateCodeSigningConfigRequest$CodeSigningConfigArn": "<p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>"
   245        }
   246      },
   247      "CodeSigningConfigId": {
   248        "base": null,
   249        "refs": {
   250          "CodeSigningConfig$CodeSigningConfigId": "<p>Unique identifer for the Code signing configuration.</p>"
   251        }
   252      },
   253      "CodeSigningConfigList": {
   254        "base": null,
   255        "refs": {
   256          "ListCodeSigningConfigsResponse$CodeSigningConfigs": "<p>The code signing configurations</p>"
   257        }
   258      },
   259      "CodeSigningConfigNotFoundException": {
   260        "base": "<p>The specified code signing configuration does not exist.</p>",
   261        "refs": {
   262        }
   263      },
   264      "CodeSigningPolicies": {
   265        "base": "<p>Code signing configuration <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html#config-codesigning-policies\">policies</a> specify the validation failure action for signature mismatch or expiry.</p>",
   266        "refs": {
   267          "CodeSigningConfig$CodeSigningPolicies": "<p>The code signing policy controls the validation failure action for signature mismatch or expiry.</p>",
   268          "CreateCodeSigningConfigRequest$CodeSigningPolicies": "<p>The code signing policies define the actions to take if the validation checks fail. </p>",
   269          "UpdateCodeSigningConfigRequest$CodeSigningPolicies": "<p>The code signing policy.</p>"
   270        }
   271      },
   272      "CodeSigningPolicy": {
   273        "base": null,
   274        "refs": {
   275          "CodeSigningPolicies$UntrustedArtifactOnDeployment": "<p>Code signing configuration policy for deployment validation failure. If you set the policy to <code>Enforce</code>, Lambda blocks the deployment request if signature validation checks fail. If you set the policy to <code>Warn</code>, Lambda allows the deployment and creates a CloudWatch log. </p> <p>Default value: <code>Warn</code> </p>"
   276        }
   277      },
   278      "CodeStorageExceededException": {
   279        "base": "<p>You have exceeded your maximum total code size per account. <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/limits.html\">Learn more</a> </p>",
   280        "refs": {
   281        }
   282      },
   283      "CodeVerificationFailedException": {
   284        "base": "<p>The code signature failed one or more of the validation checks for signature mismatch or expiry, and the code signing policy is set to ENFORCE. Lambda blocks the deployment. </p>",
   285        "refs": {
   286        }
   287      },
   288      "CompatibleArchitectures": {
   289        "base": null,
   290        "refs": {
   291          "GetLayerVersionResponse$CompatibleArchitectures": "<p>A list of compatible <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html\">instruction set architectures</a>.</p>",
   292          "LayerVersionsListItem$CompatibleArchitectures": "<p>A list of compatible <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html\">instruction set architectures</a>.</p>",
   293          "PublishLayerVersionRequest$CompatibleArchitectures": "<p>A list of compatible <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html\">instruction set architectures</a>.</p>",
   294          "PublishLayerVersionResponse$CompatibleArchitectures": "<p>A list of compatible <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html\">instruction set architectures</a>.</p>"
   295        }
   296      },
   297      "CompatibleRuntimes": {
   298        "base": null,
   299        "refs": {
   300          "GetLayerVersionResponse$CompatibleRuntimes": "<p>The layer's compatible runtimes.</p>",
   301          "LayerVersionsListItem$CompatibleRuntimes": "<p>The layer's compatible runtimes.</p>",
   302          "PublishLayerVersionRequest$CompatibleRuntimes": "<p>A list of compatible <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html\">function runtimes</a>. Used for filtering with <a>ListLayers</a> and <a>ListLayerVersions</a>.</p>",
   303          "PublishLayerVersionResponse$CompatibleRuntimes": "<p>The layer's compatible runtimes.</p>"
   304        }
   305      },
   306      "Concurrency": {
   307        "base": null,
   308        "refs": {
   309          "GetFunctionResponse$Concurrency": "<p>The function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html\">reserved concurrency</a>.</p>"
   310        }
   311      },
   312      "CreateAliasRequest": {
   313        "base": null,
   314        "refs": {
   315        }
   316      },
   317      "CreateCodeSigningConfigRequest": {
   318        "base": null,
   319        "refs": {
   320        }
   321      },
   322      "CreateCodeSigningConfigResponse": {
   323        "base": null,
   324        "refs": {
   325        }
   326      },
   327      "CreateEventSourceMappingRequest": {
   328        "base": null,
   329        "refs": {
   330        }
   331      },
   332      "CreateFunctionRequest": {
   333        "base": null,
   334        "refs": {
   335        }
   336      },
   337      "Date": {
   338        "base": null,
   339        "refs": {
   340          "CreateEventSourceMappingRequest$StartingPositionTimestamp": "<p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start reading.</p>",
   341          "EventSourceMappingConfiguration$StartingPositionTimestamp": "<p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start reading.</p>",
   342          "EventSourceMappingConfiguration$LastModified": "<p>The date that the event source mapping was last updated or that its state changed.</p>",
   343          "FunctionEventInvokeConfig$LastModified": "<p>The date and time that the configuration was last updated.</p>"
   344        }
   345      },
   346      "DeadLetterConfig": {
   347        "base": "<p>The <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq\">dead-letter queue</a> for failed asynchronous invocations.</p>",
   348        "refs": {
   349          "CreateFunctionRequest$DeadLetterConfig": "<p>A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq\">Dead Letter Queues</a>.</p>",
   350          "FunctionConfiguration$DeadLetterConfig": "<p>The function's dead letter queue.</p>",
   351          "UpdateFunctionConfigurationRequest$DeadLetterConfig": "<p>A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq\">Dead Letter Queues</a>.</p>"
   352        }
   353      },
   354      "DeleteAliasRequest": {
   355        "base": null,
   356        "refs": {
   357        }
   358      },
   359      "DeleteCodeSigningConfigRequest": {
   360        "base": null,
   361        "refs": {
   362        }
   363      },
   364      "DeleteCodeSigningConfigResponse": {
   365        "base": null,
   366        "refs": {
   367        }
   368      },
   369      "DeleteEventSourceMappingRequest": {
   370        "base": null,
   371        "refs": {
   372        }
   373      },
   374      "DeleteFunctionCodeSigningConfigRequest": {
   375        "base": null,
   376        "refs": {
   377        }
   378      },
   379      "DeleteFunctionConcurrencyRequest": {
   380        "base": null,
   381        "refs": {
   382        }
   383      },
   384      "DeleteFunctionEventInvokeConfigRequest": {
   385        "base": null,
   386        "refs": {
   387        }
   388      },
   389      "DeleteFunctionRequest": {
   390        "base": null,
   391        "refs": {
   392        }
   393      },
   394      "DeleteLayerVersionRequest": {
   395        "base": null,
   396        "refs": {
   397        }
   398      },
   399      "DeleteProvisionedConcurrencyConfigRequest": {
   400        "base": null,
   401        "refs": {
   402        }
   403      },
   404      "Description": {
   405        "base": null,
   406        "refs": {
   407          "AliasConfiguration$Description": "<p>A description of the alias.</p>",
   408          "CodeSigningConfig$Description": "<p>Code signing configuration description.</p>",
   409          "CreateAliasRequest$Description": "<p>A description of the alias.</p>",
   410          "CreateCodeSigningConfigRequest$Description": "<p>Descriptive name for this code signing configuration.</p>",
   411          "CreateFunctionRequest$Description": "<p>A description of the function.</p>",
   412          "FunctionConfiguration$Description": "<p>The function's description.</p>",
   413          "GetLayerVersionResponse$Description": "<p>The description of the version.</p>",
   414          "LayerVersionsListItem$Description": "<p>The description of the version.</p>",
   415          "PublishLayerVersionRequest$Description": "<p>The description of the version.</p>",
   416          "PublishLayerVersionResponse$Description": "<p>The description of the version.</p>",
   417          "PublishVersionRequest$Description": "<p>A description for the version to override the description in the function configuration.</p>",
   418          "UpdateAliasRequest$Description": "<p>A description of the alias.</p>",
   419          "UpdateCodeSigningConfigRequest$Description": "<p>Descriptive name for this code signing configuration.</p>",
   420          "UpdateFunctionConfigurationRequest$Description": "<p>A description of the function.</p>"
   421        }
   422      },
   423      "DestinationArn": {
   424        "base": null,
   425        "refs": {
   426          "OnFailure$Destination": "<p>The Amazon Resource Name (ARN) of the destination resource.</p>",
   427          "OnSuccess$Destination": "<p>The Amazon Resource Name (ARN) of the destination resource.</p>"
   428        }
   429      },
   430      "DestinationConfig": {
   431        "base": "<p>A configuration object that specifies the destination of an event after Lambda processes it.</p>",
   432        "refs": {
   433          "CreateEventSourceMappingRequest$DestinationConfig": "<p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>",
   434          "EventSourceMappingConfiguration$DestinationConfig": "<p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>",
   435          "FunctionEventInvokeConfig$DestinationConfig": "<p>A destination for events after they have been sent to a function for processing.</p> <p class=\"title\"> <b>Destinations</b> </p> <ul> <li> <p> <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li> <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b> - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an Amazon EventBridge event bus.</p> </li> </ul>",
   436          "PutFunctionEventInvokeConfigRequest$DestinationConfig": "<p>A destination for events after they have been sent to a function for processing.</p> <p class=\"title\"> <b>Destinations</b> </p> <ul> <li> <p> <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li> <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b> - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an Amazon EventBridge event bus.</p> </li> </ul>",
   437          "UpdateEventSourceMappingRequest$DestinationConfig": "<p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>",
   438          "UpdateFunctionEventInvokeConfigRequest$DestinationConfig": "<p>A destination for events after they have been sent to a function for processing.</p> <p class=\"title\"> <b>Destinations</b> </p> <ul> <li> <p> <b>Function</b> - The Amazon Resource Name (ARN) of a Lambda function.</p> </li> <li> <p> <b>Queue</b> - The ARN of an SQS queue.</p> </li> <li> <p> <b>Topic</b> - The ARN of an SNS topic.</p> </li> <li> <p> <b>Event Bus</b> - The ARN of an Amazon EventBridge event bus.</p> </li> </ul>"
   439        }
   440      },
   441      "EC2AccessDeniedException": {
   442        "base": "<p>Need additional permissions to configure VPC settings.</p>",
   443        "refs": {
   444        }
   445      },
   446      "EC2ThrottledException": {
   447        "base": "<p>Lambda was throttled by Amazon EC2 during Lambda function initialization using the execution role provided for the Lambda function.</p>",
   448        "refs": {
   449        }
   450      },
   451      "EC2UnexpectedException": {
   452        "base": "<p>Lambda received an unexpected EC2 client exception while setting up for the Lambda function.</p>",
   453        "refs": {
   454        }
   455      },
   456      "EFSIOException": {
   457        "base": "<p>An error occurred when reading from or writing to a connected file system.</p>",
   458        "refs": {
   459        }
   460      },
   461      "EFSMountConnectivityException": {
   462        "base": "<p>The function couldn't make a network connection to the configured file system.</p>",
   463        "refs": {
   464        }
   465      },
   466      "EFSMountFailureException": {
   467        "base": "<p>The function couldn't mount the configured file system due to a permission or configuration issue.</p>",
   468        "refs": {
   469        }
   470      },
   471      "EFSMountTimeoutException": {
   472        "base": "<p>The function was able to make a network connection to the configured file system, but the mount operation timed out.</p>",
   473        "refs": {
   474        }
   475      },
   476      "ENILimitReachedException": {
   477        "base": "<p>Lambda was not able to create an elastic network interface in the VPC, specified as part of Lambda function configuration, because the limit for network interfaces has been reached.</p>",
   478        "refs": {
   479        }
   480      },
   481      "Enabled": {
   482        "base": null,
   483        "refs": {
   484          "CreateEventSourceMappingRequest$Enabled": "<p>When true, the event source mapping is active. When false, Lambda pauses polling and invocation.</p> <p>Default: True</p>",
   485          "UpdateEventSourceMappingRequest$Enabled": "<p>When true, the event source mapping is active. When false, Lambda pauses polling and invocation.</p> <p>Default: True</p>"
   486        }
   487      },
   488      "EndPointType": {
   489        "base": null,
   490        "refs": {
   491          "Endpoints$key": null
   492        }
   493      },
   494      "Endpoint": {
   495        "base": null,
   496        "refs": {
   497          "EndpointLists$member": null
   498        }
   499      },
   500      "EndpointLists": {
   501        "base": null,
   502        "refs": {
   503          "Endpoints$value": null
   504        }
   505      },
   506      "Endpoints": {
   507        "base": null,
   508        "refs": {
   509          "SelfManagedEventSource$Endpoints": "<p>The list of bootstrap servers for your Kafka brokers in the following format: <code>\"KAFKA_BOOTSTRAP_SERVERS\": [\"abc.xyz.com:xxxx\",\"abc2.xyz.com:xxxx\"]</code>.</p>"
   510        }
   511      },
   512      "Environment": {
   513        "base": "<p>A function's environment variable settings. You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration. </p>",
   514        "refs": {
   515          "CreateFunctionRequest$Environment": "<p>Environment variables that are accessible from function code during execution.</p>",
   516          "UpdateFunctionConfigurationRequest$Environment": "<p>Environment variables that are accessible from function code during execution.</p>"
   517        }
   518      },
   519      "EnvironmentError": {
   520        "base": "<p>Error messages for environment variables that couldn't be applied.</p>",
   521        "refs": {
   522          "EnvironmentResponse$Error": "<p>Error messages for environment variables that couldn't be applied.</p>"
   523        }
   524      },
   525      "EnvironmentResponse": {
   526        "base": "<p>The results of an operation to update or read environment variables. If the operation is successful, the response contains the environment variables. If it failed, the response contains details about the error.</p>",
   527        "refs": {
   528          "FunctionConfiguration$Environment": "<p>The function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html\">environment variables</a>.</p>"
   529        }
   530      },
   531      "EnvironmentVariableName": {
   532        "base": null,
   533        "refs": {
   534          "EnvironmentVariables$key": null
   535        }
   536      },
   537      "EnvironmentVariableValue": {
   538        "base": null,
   539        "refs": {
   540          "EnvironmentVariables$value": null
   541        }
   542      },
   543      "EnvironmentVariables": {
   544        "base": null,
   545        "refs": {
   546          "Environment$Variables": "<p>Environment variable key-value pairs. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html\">Using Lambda environment variables</a>.</p>",
   547          "EnvironmentResponse$Variables": "<p>Environment variable key-value pairs.</p>"
   548        }
   549      },
   550      "EventSourceMappingConfiguration": {
   551        "base": "<p>A mapping between an Amazon Web Services resource and a Lambda function. For details, see <a>CreateEventSourceMapping</a>.</p>",
   552        "refs": {
   553          "EventSourceMappingsList$member": null
   554        }
   555      },
   556      "EventSourceMappingsList": {
   557        "base": null,
   558        "refs": {
   559          "ListEventSourceMappingsResponse$EventSourceMappings": "<p>A list of event source mappings.</p>"
   560        }
   561      },
   562      "EventSourcePosition": {
   563        "base": null,
   564        "refs": {
   565          "CreateEventSourceMappingRequest$StartingPosition": "<p>The position in a stream from which to start reading. Required for Amazon Kinesis, Amazon DynamoDB, and Amazon MSK Streams sources. <code>AT_TIMESTAMP</code> is only supported for Amazon Kinesis streams.</p>",
   566          "EventSourceMappingConfiguration$StartingPosition": "<p>The position in a stream from which to start reading. Required for Amazon Kinesis, Amazon DynamoDB, and Amazon MSK stream sources. <code>AT_TIMESTAMP</code> is supported only for Amazon Kinesis streams.</p>"
   567        }
   568      },
   569      "EventSourceToken": {
   570        "base": null,
   571        "refs": {
   572          "AddPermissionRequest$EventSourceToken": "<p>For Alexa Smart Home functions, a token that must be supplied by the invoker.</p>"
   573        }
   574      },
   575      "FileSystemArn": {
   576        "base": null,
   577        "refs": {
   578          "FileSystemConfig$Arn": "<p>The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.</p>"
   579        }
   580      },
   581      "FileSystemConfig": {
   582        "base": "<p>Details about the connection between a Lambda function and an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html\">Amazon EFS file system</a>.</p>",
   583        "refs": {
   584          "FileSystemConfigList$member": null
   585        }
   586      },
   587      "FileSystemConfigList": {
   588        "base": null,
   589        "refs": {
   590          "CreateFunctionRequest$FileSystemConfigs": "<p>Connection settings for an Amazon EFS file system.</p>",
   591          "FunctionConfiguration$FileSystemConfigs": "<p>Connection settings for an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html\">Amazon EFS file system</a>.</p>",
   592          "UpdateFunctionConfigurationRequest$FileSystemConfigs": "<p>Connection settings for an Amazon EFS file system.</p>"
   593        }
   594      },
   595      "FunctionArn": {
   596        "base": null,
   597        "refs": {
   598          "AliasConfiguration$AliasArn": "<p>The Amazon Resource Name (ARN) of the alias.</p>",
   599          "EventSourceMappingConfiguration$FunctionArn": "<p>The ARN of the Lambda function.</p>",
   600          "FunctionArnList$member": null,
   601          "FunctionConfiguration$MasterArn": "<p>For Lambda@Edge functions, the ARN of the master function.</p>",
   602          "FunctionEventInvokeConfig$FunctionArn": "<p>The Amazon Resource Name (ARN) of the function.</p>",
   603          "ListTagsRequest$Resource": "<p>The function's Amazon Resource Name (ARN). Note: Lambda does not support adding tags to aliases or versions.</p>",
   604          "ProvisionedConcurrencyConfigListItem$FunctionArn": "<p>The Amazon Resource Name (ARN) of the alias or version.</p>",
   605          "TagResourceRequest$Resource": "<p>The function's Amazon Resource Name (ARN).</p>",
   606          "UntagResourceRequest$Resource": "<p>The function's Amazon Resource Name (ARN).</p>"
   607        }
   608      },
   609      "FunctionArnList": {
   610        "base": null,
   611        "refs": {
   612          "ListFunctionsByCodeSigningConfigResponse$FunctionArns": "<p>The function ARNs. </p>"
   613        }
   614      },
   615      "FunctionCode": {
   616        "base": "<p>The code for the Lambda function. You can specify either an object in Amazon S3, upload a .zip file archive deployment package directly, or specify the URI of a container image.</p>",
   617        "refs": {
   618          "CreateFunctionRequest$Code": "<p>The code for the function.</p>"
   619        }
   620      },
   621      "FunctionCodeLocation": {
   622        "base": "<p>Details about a function's deployment package.</p>",
   623        "refs": {
   624          "GetFunctionResponse$Code": "<p>The deployment package of the function or version.</p>"
   625        }
   626      },
   627      "FunctionConfiguration": {
   628        "base": "<p>Details about a function's configuration.</p>",
   629        "refs": {
   630          "FunctionList$member": null,
   631          "GetFunctionResponse$Configuration": "<p>The configuration of the function or version.</p>"
   632        }
   633      },
   634      "FunctionEventInvokeConfig": {
   635        "base": null,
   636        "refs": {
   637          "FunctionEventInvokeConfigList$member": null
   638        }
   639      },
   640      "FunctionEventInvokeConfigList": {
   641        "base": null,
   642        "refs": {
   643          "ListFunctionEventInvokeConfigsResponse$FunctionEventInvokeConfigs": "<p>A list of configurations.</p>"
   644        }
   645      },
   646      "FunctionList": {
   647        "base": null,
   648        "refs": {
   649          "ListFunctionsResponse$Functions": "<p>A list of Lambda functions.</p>",
   650          "ListVersionsByFunctionResponse$Versions": "<p>A list of Lambda function versions.</p>"
   651        }
   652      },
   653      "FunctionName": {
   654        "base": null,
   655        "refs": {
   656          "AddPermissionRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
   657          "CreateAliasRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   658          "CreateEventSourceMappingRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Version or Alias ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.</p>",
   659          "CreateFunctionRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   660          "DeleteAliasRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   661          "DeleteFunctionCodeSigningConfigRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   662          "DeleteFunctionConcurrencyRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   663          "DeleteFunctionEventInvokeConfigRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
   664          "DeleteFunctionRequest$FunctionName": "<p>The name of the Lambda function or version.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:1</code> (with version).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
   665          "DeleteProvisionedConcurrencyConfigRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   666          "GetAliasRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   667          "GetFunctionCodeSigningConfigRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   668          "GetFunctionCodeSigningConfigResponse$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   669          "GetFunctionConcurrencyRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   670          "GetFunctionEventInvokeConfigRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
   671          "GetProvisionedConcurrencyConfigRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   672          "ListAliasesRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   673          "ListEventSourceMappingsRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Version or Alias ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.</p>",
   674          "ListFunctionEventInvokeConfigsRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   675          "ListProvisionedConcurrencyConfigsRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   676          "PublishVersionRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   677          "PutFunctionCodeSigningConfigRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   678          "PutFunctionCodeSigningConfigResponse$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   679          "PutFunctionConcurrencyRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   680          "PutFunctionEventInvokeConfigRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
   681          "PutProvisionedConcurrencyConfigRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   682          "RemovePermissionRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
   683          "UpdateAliasRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   684          "UpdateEventSourceMappingRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Version or Alias ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it's limited to 64 characters in length.</p>",
   685          "UpdateFunctionCodeRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   686          "UpdateFunctionConfigurationRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
   687          "UpdateFunctionEventInvokeConfigRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>"
   688        }
   689      },
   690      "FunctionResponseType": {
   691        "base": null,
   692        "refs": {
   693          "FunctionResponseTypeList$member": null
   694        }
   695      },
   696      "FunctionResponseTypeList": {
   697        "base": null,
   698        "refs": {
   699          "CreateEventSourceMappingRequest$FunctionResponseTypes": "<p>(Streams only) A list of current response type enums applied to the event source mapping.</p>",
   700          "EventSourceMappingConfiguration$FunctionResponseTypes": "<p>(Streams only) A list of current response type enums applied to the event source mapping.</p>",
   701          "UpdateEventSourceMappingRequest$FunctionResponseTypes": "<p>(Streams only) A list of current response type enums applied to the event source mapping.</p>"
   702        }
   703      },
   704      "FunctionVersion": {
   705        "base": null,
   706        "refs": {
   707          "ListFunctionsRequest$FunctionVersion": "<p>Set to <code>ALL</code> to include entries for all published versions of each function.</p>"
   708        }
   709      },
   710      "GetAccountSettingsRequest": {
   711        "base": null,
   712        "refs": {
   713        }
   714      },
   715      "GetAccountSettingsResponse": {
   716        "base": null,
   717        "refs": {
   718        }
   719      },
   720      "GetAliasRequest": {
   721        "base": null,
   722        "refs": {
   723        }
   724      },
   725      "GetCodeSigningConfigRequest": {
   726        "base": null,
   727        "refs": {
   728        }
   729      },
   730      "GetCodeSigningConfigResponse": {
   731        "base": null,
   732        "refs": {
   733        }
   734      },
   735      "GetEventSourceMappingRequest": {
   736        "base": null,
   737        "refs": {
   738        }
   739      },
   740      "GetFunctionCodeSigningConfigRequest": {
   741        "base": null,
   742        "refs": {
   743        }
   744      },
   745      "GetFunctionCodeSigningConfigResponse": {
   746        "base": null,
   747        "refs": {
   748        }
   749      },
   750      "GetFunctionConcurrencyRequest": {
   751        "base": null,
   752        "refs": {
   753        }
   754      },
   755      "GetFunctionConcurrencyResponse": {
   756        "base": null,
   757        "refs": {
   758        }
   759      },
   760      "GetFunctionConfigurationRequest": {
   761        "base": null,
   762        "refs": {
   763        }
   764      },
   765      "GetFunctionEventInvokeConfigRequest": {
   766        "base": null,
   767        "refs": {
   768        }
   769      },
   770      "GetFunctionRequest": {
   771        "base": null,
   772        "refs": {
   773        }
   774      },
   775      "GetFunctionResponse": {
   776        "base": null,
   777        "refs": {
   778        }
   779      },
   780      "GetLayerVersionByArnRequest": {
   781        "base": null,
   782        "refs": {
   783        }
   784      },
   785      "GetLayerVersionPolicyRequest": {
   786        "base": null,
   787        "refs": {
   788        }
   789      },
   790      "GetLayerVersionPolicyResponse": {
   791        "base": null,
   792        "refs": {
   793        }
   794      },
   795      "GetLayerVersionRequest": {
   796        "base": null,
   797        "refs": {
   798        }
   799      },
   800      "GetLayerVersionResponse": {
   801        "base": null,
   802        "refs": {
   803        }
   804      },
   805      "GetPolicyRequest": {
   806        "base": null,
   807        "refs": {
   808        }
   809      },
   810      "GetPolicyResponse": {
   811        "base": null,
   812        "refs": {
   813        }
   814      },
   815      "GetProvisionedConcurrencyConfigRequest": {
   816        "base": null,
   817        "refs": {
   818        }
   819      },
   820      "GetProvisionedConcurrencyConfigResponse": {
   821        "base": null,
   822        "refs": {
   823        }
   824      },
   825      "Handler": {
   826        "base": null,
   827        "refs": {
   828          "CreateFunctionRequest$Handler": "<p>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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/programming-model-v2.html\">Programming Model</a>.</p>",
   829          "FunctionConfiguration$Handler": "<p>The function that Lambda calls to begin executing your function.</p>",
   830          "UpdateFunctionConfigurationRequest$Handler": "<p>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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/programming-model-v2.html\">Programming Model</a>.</p>"
   831        }
   832      },
   833      "HttpStatus": {
   834        "base": null,
   835        "refs": {
   836          "InvokeAsyncResponse$Status": "<p>The status code.</p>"
   837        }
   838      },
   839      "ImageConfig": {
   840        "base": "<p>Configuration values that override the container image Dockerfile settings. See <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms\">Container settings</a>. </p>",
   841        "refs": {
   842          "CreateFunctionRequest$ImageConfig": "<p>Container image <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-images.html#configuration-images-settings\">configuration values</a> that override the values in the container image Dockerfile.</p>",
   843          "ImageConfigResponse$ImageConfig": "<p>Configuration values that override the container image Dockerfile.</p>",
   844          "UpdateFunctionConfigurationRequest$ImageConfig": "<p> <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/images-parms.html\">Container image configuration values</a> that override the values in the container image Docker file.</p>"
   845        }
   846      },
   847      "ImageConfigError": {
   848        "base": "<p>Error response to GetFunctionConfiguration.</p>",
   849        "refs": {
   850          "ImageConfigResponse$Error": "<p>Error response to GetFunctionConfiguration.</p>"
   851        }
   852      },
   853      "ImageConfigResponse": {
   854        "base": "<p>Response to GetFunctionConfiguration request.</p>",
   855        "refs": {
   856          "FunctionConfiguration$ImageConfigResponse": "<p>The function's image configuration values.</p>"
   857        }
   858      },
   859      "Integer": {
   860        "base": null,
   861        "refs": {
   862          "AccountLimit$ConcurrentExecutions": "<p>The maximum number of simultaneous function executions.</p>",
   863          "InvocationResponse$StatusCode": "<p>The HTTP status code is in the 200 range for a successful request. For the <code>RequestResponse</code> invocation type, this status code is 200. For the <code>Event</code> invocation type, this status code is 202. For the <code>DryRun</code> invocation type, the status code is 204.</p>"
   864        }
   865      },
   866      "InvalidCodeSignatureException": {
   867        "base": "<p>The code signature failed the integrity check. Lambda always blocks deployment if the integrity check fails, even if code signing policy is set to WARN.</p>",
   868        "refs": {
   869        }
   870      },
   871      "InvalidParameterValueException": {
   872        "base": "<p>One of the parameters in the request is invalid.</p>",
   873        "refs": {
   874        }
   875      },
   876      "InvalidRequestContentException": {
   877        "base": "<p>The request body could not be parsed as JSON.</p>",
   878        "refs": {
   879        }
   880      },
   881      "InvalidRuntimeException": {
   882        "base": "<p>The runtime or runtime version specified is not supported.</p>",
   883        "refs": {
   884        }
   885      },
   886      "InvalidSecurityGroupIDException": {
   887        "base": "<p>The Security Group ID provided in the Lambda function VPC configuration is invalid.</p>",
   888        "refs": {
   889        }
   890      },
   891      "InvalidSubnetIDException": {
   892        "base": "<p>The Subnet ID provided in the Lambda function VPC configuration is invalid.</p>",
   893        "refs": {
   894        }
   895      },
   896      "InvalidZipFileException": {
   897        "base": "<p>Lambda could not unzip the deployment package.</p>",
   898        "refs": {
   899        }
   900      },
   901      "InvocationRequest": {
   902        "base": null,
   903        "refs": {
   904        }
   905      },
   906      "InvocationResponse": {
   907        "base": null,
   908        "refs": {
   909        }
   910      },
   911      "InvocationType": {
   912        "base": null,
   913        "refs": {
   914          "InvocationRequest$InvocationType": "<p>Choose from the following options.</p> <ul> <li> <p> <code>RequestResponse</code> (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.</p> </li> <li> <p> <code>Event</code> - 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.</p> </li> <li> <p> <code>DryRun</code> - Validate parameter values and verify that the user or role has permission to invoke the function.</p> </li> </ul>"
   915        }
   916      },
   917      "InvokeAsyncRequest": {
   918        "base": null,
   919        "refs": {
   920        }
   921      },
   922      "InvokeAsyncResponse": {
   923        "base": "<p>A success response (<code>202 Accepted</code>) indicates that the request is queued for invocation. </p>",
   924        "refs": {
   925        }
   926      },
   927      "KMSAccessDeniedException": {
   928        "base": "<p>Lambda was unable to decrypt the environment variables because KMS access was denied. Check the Lambda function's KMS permissions.</p>",
   929        "refs": {
   930        }
   931      },
   932      "KMSDisabledException": {
   933        "base": "<p>Lambda was unable to decrypt the environment variables because the KMS key used is disabled. Check the Lambda function's KMS key settings.</p>",
   934        "refs": {
   935        }
   936      },
   937      "KMSInvalidStateException": {
   938        "base": "<p>Lambda was unable to decrypt the environment variables because the KMS key used is in an invalid state for Decrypt. Check the function's KMS key settings.</p>",
   939        "refs": {
   940        }
   941      },
   942      "KMSKeyArn": {
   943        "base": null,
   944        "refs": {
   945          "CreateFunctionRequest$KMSKeyArn": "<p>The ARN of the Amazon Web Services Key Management Service (KMS) key that's used to encrypt your function's environment variables. If it's not provided, Lambda uses a default service key.</p>",
   946          "FunctionConfiguration$KMSKeyArn": "<p>The KMS key that's used to encrypt the function's environment variables. This key is only returned if you've configured a customer managed CMK.</p>",
   947          "UpdateFunctionConfigurationRequest$KMSKeyArn": "<p>The ARN of the Amazon Web Services Key Management Service (KMS) key that's used to encrypt your function's environment variables. If it's not provided, Lambda uses a default service key.</p>"
   948        }
   949      },
   950      "KMSNotFoundException": {
   951        "base": "<p>Lambda was unable to decrypt the environment variables because the KMS key was not found. Check the function's KMS key settings. </p>",
   952        "refs": {
   953        }
   954      },
   955      "LastUpdateStatus": {
   956        "base": null,
   957        "refs": {
   958          "FunctionConfiguration$LastUpdateStatus": "<p>The status of the last update that was performed on the function. This is first set to <code>Successful</code> after function creation completes.</p>"
   959        }
   960      },
   961      "LastUpdateStatusReason": {
   962        "base": null,
   963        "refs": {
   964          "FunctionConfiguration$LastUpdateStatusReason": "<p>The reason for the last update that was performed on the function.</p>"
   965        }
   966      },
   967      "LastUpdateStatusReasonCode": {
   968        "base": null,
   969        "refs": {
   970          "FunctionConfiguration$LastUpdateStatusReasonCode": "<p>The reason code for the last update that was performed on the function.</p>"
   971        }
   972      },
   973      "Layer": {
   974        "base": "<p>An <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>.</p>",
   975        "refs": {
   976          "LayersReferenceList$member": null
   977        }
   978      },
   979      "LayerArn": {
   980        "base": null,
   981        "refs": {
   982          "GetLayerVersionResponse$LayerArn": "<p>The ARN of the layer.</p>",
   983          "LayersListItem$LayerArn": "<p>The Amazon Resource Name (ARN) of the function layer.</p>",
   984          "PublishLayerVersionResponse$LayerArn": "<p>The ARN of the layer.</p>"
   985        }
   986      },
   987      "LayerList": {
   988        "base": null,
   989        "refs": {
   990          "CreateFunctionRequest$Layers": "<p>A list of <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">function layers</a> to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>",
   991          "UpdateFunctionConfigurationRequest$Layers": "<p>A list of <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">function layers</a> to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>"
   992        }
   993      },
   994      "LayerName": {
   995        "base": null,
   996        "refs": {
   997          "AddLayerVersionPermissionRequest$LayerName": "<p>The name or Amazon Resource Name (ARN) of the layer.</p>",
   998          "DeleteLayerVersionRequest$LayerName": "<p>The name or Amazon Resource Name (ARN) of the layer.</p>",
   999          "GetLayerVersionPolicyRequest$LayerName": "<p>The name or Amazon Resource Name (ARN) of the layer.</p>",
  1000          "GetLayerVersionRequest$LayerName": "<p>The name or Amazon Resource Name (ARN) of the layer.</p>",
  1001          "LayersListItem$LayerName": "<p>The name of the layer.</p>",
  1002          "ListLayerVersionsRequest$LayerName": "<p>The name or Amazon Resource Name (ARN) of the layer.</p>",
  1003          "PublishLayerVersionRequest$LayerName": "<p>The name or Amazon Resource Name (ARN) of the layer.</p>",
  1004          "RemoveLayerVersionPermissionRequest$LayerName": "<p>The name or Amazon Resource Name (ARN) of the layer.</p>"
  1005        }
  1006      },
  1007      "LayerPermissionAllowedAction": {
  1008        "base": null,
  1009        "refs": {
  1010          "AddLayerVersionPermissionRequest$Action": "<p>The API action that grants access to the layer. For example, <code>lambda:GetLayerVersion</code>.</p>"
  1011        }
  1012      },
  1013      "LayerPermissionAllowedPrincipal": {
  1014        "base": null,
  1015        "refs": {
  1016          "AddLayerVersionPermissionRequest$Principal": "<p>An account ID, or <code>*</code> to grant layer usage permission to all accounts in an organization, or all Amazon Web Services accounts (if <code>organizationId</code> is not specified). For the last case, make sure that you really do want all Amazon Web Services accounts to have usage permission to this layer. </p>"
  1017        }
  1018      },
  1019      "LayerVersionArn": {
  1020        "base": null,
  1021        "refs": {
  1022          "GetLayerVersionByArnRequest$Arn": "<p>The ARN of the layer version.</p>",
  1023          "GetLayerVersionResponse$LayerVersionArn": "<p>The ARN of the layer version.</p>",
  1024          "Layer$Arn": "<p>The Amazon Resource Name (ARN) of the function layer.</p>",
  1025          "LayerList$member": null,
  1026          "LayerVersionsListItem$LayerVersionArn": "<p>The ARN of the layer version.</p>",
  1027          "PublishLayerVersionResponse$LayerVersionArn": "<p>The ARN of the layer version.</p>"
  1028        }
  1029      },
  1030      "LayerVersionContentInput": {
  1031        "base": "<p>A ZIP archive that contains the contents of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>. You can specify either an Amazon S3 location, or upload a layer archive directly.</p>",
  1032        "refs": {
  1033          "PublishLayerVersionRequest$Content": "<p>The function layer archive.</p>"
  1034        }
  1035      },
  1036      "LayerVersionContentOutput": {
  1037        "base": "<p>Details about a version of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>.</p>",
  1038        "refs": {
  1039          "GetLayerVersionResponse$Content": "<p>Details about the layer version.</p>",
  1040          "PublishLayerVersionResponse$Content": "<p>Details about the layer version.</p>"
  1041        }
  1042      },
  1043      "LayerVersionNumber": {
  1044        "base": null,
  1045        "refs": {
  1046          "AddLayerVersionPermissionRequest$VersionNumber": "<p>The version number.</p>",
  1047          "DeleteLayerVersionRequest$VersionNumber": "<p>The version number.</p>",
  1048          "GetLayerVersionPolicyRequest$VersionNumber": "<p>The version number.</p>",
  1049          "GetLayerVersionRequest$VersionNumber": "<p>The version number.</p>",
  1050          "GetLayerVersionResponse$Version": "<p>The version number.</p>",
  1051          "LayerVersionsListItem$Version": "<p>The version number.</p>",
  1052          "PublishLayerVersionResponse$Version": "<p>The version number.</p>",
  1053          "RemoveLayerVersionPermissionRequest$VersionNumber": "<p>The version number.</p>"
  1054        }
  1055      },
  1056      "LayerVersionsList": {
  1057        "base": null,
  1058        "refs": {
  1059          "ListLayerVersionsResponse$LayerVersions": "<p>A list of versions.</p>"
  1060        }
  1061      },
  1062      "LayerVersionsListItem": {
  1063        "base": "<p>Details about a version of an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>.</p>",
  1064        "refs": {
  1065          "LayerVersionsList$member": null,
  1066          "LayersListItem$LatestMatchingVersion": "<p>The newest version of the layer.</p>"
  1067        }
  1068      },
  1069      "LayersList": {
  1070        "base": null,
  1071        "refs": {
  1072          "ListLayersResponse$Layers": "<p>A list of function layers.</p>"
  1073        }
  1074      },
  1075      "LayersListItem": {
  1076        "base": "<p>Details about an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\">Lambda layer</a>.</p>",
  1077        "refs": {
  1078          "LayersList$member": null
  1079        }
  1080      },
  1081      "LayersReferenceList": {
  1082        "base": null,
  1083        "refs": {
  1084          "FunctionConfiguration$Layers": "<p>The function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html\"> layers</a>.</p>"
  1085        }
  1086      },
  1087      "LicenseInfo": {
  1088        "base": null,
  1089        "refs": {
  1090          "GetLayerVersionResponse$LicenseInfo": "<p>The layer's software license.</p>",
  1091          "LayerVersionsListItem$LicenseInfo": "<p>The layer's open-source license.</p>",
  1092          "PublishLayerVersionRequest$LicenseInfo": "<p>The layer's software license. It can be any of the following:</p> <ul> <li> <p>An <a href=\"https://spdx.org/licenses/\">SPDX license identifier</a>. For example, <code>MIT</code>.</p> </li> <li> <p>The URL of a license hosted on the internet. For example, <code>https://opensource.org/licenses/MIT</code>.</p> </li> <li> <p>The full text of the license.</p> </li> </ul>",
  1093          "PublishLayerVersionResponse$LicenseInfo": "<p>The layer's software license.</p>"
  1094        }
  1095      },
  1096      "ListAliasesRequest": {
  1097        "base": null,
  1098        "refs": {
  1099        }
  1100      },
  1101      "ListAliasesResponse": {
  1102        "base": null,
  1103        "refs": {
  1104        }
  1105      },
  1106      "ListCodeSigningConfigsRequest": {
  1107        "base": null,
  1108        "refs": {
  1109        }
  1110      },
  1111      "ListCodeSigningConfigsResponse": {
  1112        "base": null,
  1113        "refs": {
  1114        }
  1115      },
  1116      "ListEventSourceMappingsRequest": {
  1117        "base": null,
  1118        "refs": {
  1119        }
  1120      },
  1121      "ListEventSourceMappingsResponse": {
  1122        "base": null,
  1123        "refs": {
  1124        }
  1125      },
  1126      "ListFunctionEventInvokeConfigsRequest": {
  1127        "base": null,
  1128        "refs": {
  1129        }
  1130      },
  1131      "ListFunctionEventInvokeConfigsResponse": {
  1132        "base": null,
  1133        "refs": {
  1134        }
  1135      },
  1136      "ListFunctionsByCodeSigningConfigRequest": {
  1137        "base": null,
  1138        "refs": {
  1139        }
  1140      },
  1141      "ListFunctionsByCodeSigningConfigResponse": {
  1142        "base": null,
  1143        "refs": {
  1144        }
  1145      },
  1146      "ListFunctionsRequest": {
  1147        "base": null,
  1148        "refs": {
  1149        }
  1150      },
  1151      "ListFunctionsResponse": {
  1152        "base": "<p>A list of Lambda functions.</p>",
  1153        "refs": {
  1154        }
  1155      },
  1156      "ListLayerVersionsRequest": {
  1157        "base": null,
  1158        "refs": {
  1159        }
  1160      },
  1161      "ListLayerVersionsResponse": {
  1162        "base": null,
  1163        "refs": {
  1164        }
  1165      },
  1166      "ListLayersRequest": {
  1167        "base": null,
  1168        "refs": {
  1169        }
  1170      },
  1171      "ListLayersResponse": {
  1172        "base": null,
  1173        "refs": {
  1174        }
  1175      },
  1176      "ListProvisionedConcurrencyConfigsRequest": {
  1177        "base": null,
  1178        "refs": {
  1179        }
  1180      },
  1181      "ListProvisionedConcurrencyConfigsResponse": {
  1182        "base": null,
  1183        "refs": {
  1184        }
  1185      },
  1186      "ListTagsRequest": {
  1187        "base": null,
  1188        "refs": {
  1189        }
  1190      },
  1191      "ListTagsResponse": {
  1192        "base": null,
  1193        "refs": {
  1194        }
  1195      },
  1196      "ListVersionsByFunctionRequest": {
  1197        "base": null,
  1198        "refs": {
  1199        }
  1200      },
  1201      "ListVersionsByFunctionResponse": {
  1202        "base": null,
  1203        "refs": {
  1204        }
  1205      },
  1206      "LocalMountPath": {
  1207        "base": null,
  1208        "refs": {
  1209          "FileSystemConfig$LocalMountPath": "<p>The path where the function can access the file system, starting with <code>/mnt/</code>.</p>"
  1210        }
  1211      },
  1212      "LogType": {
  1213        "base": null,
  1214        "refs": {
  1215          "InvocationRequest$LogType": "<p>Set to <code>Tail</code> to include the execution log in the response. Applies to synchronously invoked functions only.</p>"
  1216        }
  1217      },
  1218      "Long": {
  1219        "base": null,
  1220        "refs": {
  1221          "AccountLimit$TotalCodeSize": "<p>The amount of storage space that you can use for all deployment packages and layer archives.</p>",
  1222          "AccountLimit$CodeSizeUnzipped": "<p>The maximum size of a function's deployment package and layers when they're extracted.</p>",
  1223          "AccountLimit$CodeSizeZipped": "<p>The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger files.</p>",
  1224          "AccountUsage$TotalCodeSize": "<p>The amount of storage space, in bytes, that's being used by deployment packages and layer archives.</p>",
  1225          "AccountUsage$FunctionCount": "<p>The number of Lambda functions.</p>",
  1226          "FunctionConfiguration$CodeSize": "<p>The size of the function's deployment package, in bytes.</p>",
  1227          "Layer$CodeSize": "<p>The size of the layer archive in bytes.</p>",
  1228          "LayerVersionContentOutput$CodeSize": "<p>The size of the layer archive in bytes.</p>"
  1229        }
  1230      },
  1231      "MasterRegion": {
  1232        "base": null,
  1233        "refs": {
  1234          "ListFunctionsRequest$MasterRegion": "<p>For Lambda@Edge functions, the Amazon Web Services Region of the master function. For example, <code>us-east-1</code> 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 <code>FunctionVersion</code> to <code>ALL</code>.</p>"
  1235        }
  1236      },
  1237      "MaxFunctionEventInvokeConfigListItems": {
  1238        "base": null,
  1239        "refs": {
  1240          "ListFunctionEventInvokeConfigsRequest$MaxItems": "<p>The maximum number of configurations to return.</p>"
  1241        }
  1242      },
  1243      "MaxLayerListItems": {
  1244        "base": null,
  1245        "refs": {
  1246          "ListLayerVersionsRequest$MaxItems": "<p>The maximum number of versions to return.</p>",
  1247          "ListLayersRequest$MaxItems": "<p>The maximum number of layers to return.</p>"
  1248        }
  1249      },
  1250      "MaxListItems": {
  1251        "base": null,
  1252        "refs": {
  1253          "ListAliasesRequest$MaxItems": "<p>Limit the number of aliases returned.</p>",
  1254          "ListCodeSigningConfigsRequest$MaxItems": "<p>Maximum number of items to return.</p>",
  1255          "ListEventSourceMappingsRequest$MaxItems": "<p>The maximum number of event source mappings to return. Note that ListEventSourceMappings returns a maximum of 100 items in each response, even if you set the number higher.</p>",
  1256          "ListFunctionsByCodeSigningConfigRequest$MaxItems": "<p>Maximum number of items to return.</p>",
  1257          "ListFunctionsRequest$MaxItems": "<p>The maximum number of functions to return in the response. Note that <code>ListFunctions</code> returns a maximum of 50 items in each response, even if you set the number higher.</p>",
  1258          "ListVersionsByFunctionRequest$MaxItems": "<p>The maximum number of versions to return. Note that <code>ListVersionsByFunction</code> returns a maximum of 50 items in each response, even if you set the number higher.</p>"
  1259        }
  1260      },
  1261      "MaxProvisionedConcurrencyConfigListItems": {
  1262        "base": null,
  1263        "refs": {
  1264          "ListProvisionedConcurrencyConfigsRequest$MaxItems": "<p>Specify a number to limit the number of configurations returned.</p>"
  1265        }
  1266      },
  1267      "MaximumBatchingWindowInSeconds": {
  1268        "base": null,
  1269        "refs": {
  1270          "CreateEventSourceMappingRequest$MaximumBatchingWindowInSeconds": "<p>(Streams and Amazon SQS standard queues) The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.</p> <p>Default: 0</p> <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>",
  1271          "EventSourceMappingConfiguration$MaximumBatchingWindowInSeconds": "<p>(Streams and Amazon SQS standard queues) The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.</p> <p>Default: 0</p> <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>",
  1272          "UpdateEventSourceMappingRequest$MaximumBatchingWindowInSeconds": "<p>(Streams and Amazon SQS standard queues) The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.</p> <p>Default: 0</p> <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>"
  1273        }
  1274      },
  1275      "MaximumEventAgeInSeconds": {
  1276        "base": null,
  1277        "refs": {
  1278          "FunctionEventInvokeConfig$MaximumEventAgeInSeconds": "<p>The maximum age of a request that Lambda sends to a function for processing.</p>",
  1279          "PutFunctionEventInvokeConfigRequest$MaximumEventAgeInSeconds": "<p>The maximum age of a request that Lambda sends to a function for processing.</p>",
  1280          "UpdateFunctionEventInvokeConfigRequest$MaximumEventAgeInSeconds": "<p>The maximum age of a request that Lambda sends to a function for processing.</p>"
  1281        }
  1282      },
  1283      "MaximumRecordAgeInSeconds": {
  1284        "base": null,
  1285        "refs": {
  1286          "CreateEventSourceMappingRequest$MaximumRecordAgeInSeconds": "<p>(Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>",
  1287          "EventSourceMappingConfiguration$MaximumRecordAgeInSeconds": "<p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, Lambda never discards old records. </p>",
  1288          "UpdateEventSourceMappingRequest$MaximumRecordAgeInSeconds": "<p>(Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>"
  1289        }
  1290      },
  1291      "MaximumRetryAttempts": {
  1292        "base": null,
  1293        "refs": {
  1294          "FunctionEventInvokeConfig$MaximumRetryAttempts": "<p>The maximum number of times to retry when the function returns an error.</p>",
  1295          "PutFunctionEventInvokeConfigRequest$MaximumRetryAttempts": "<p>The maximum number of times to retry when the function returns an error.</p>",
  1296          "UpdateFunctionEventInvokeConfigRequest$MaximumRetryAttempts": "<p>The maximum number of times to retry when the function returns an error.</p>"
  1297        }
  1298      },
  1299      "MaximumRetryAttemptsEventSourceMapping": {
  1300        "base": null,
  1301        "refs": {
  1302          "CreateEventSourceMappingRequest$MaximumRetryAttempts": "<p>(Streams only) 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.</p>",
  1303          "EventSourceMappingConfiguration$MaximumRetryAttempts": "<p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, Lambda retries failed records until the record expires in the event source.</p>",
  1304          "UpdateEventSourceMappingRequest$MaximumRetryAttempts": "<p>(Streams only) 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.</p>"
  1305        }
  1306      },
  1307      "MemorySize": {
  1308        "base": null,
  1309        "refs": {
  1310          "CreateFunctionRequest$MemorySize": "<p>The amount of <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-memory.html\">memory available to the function</a> at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>",
  1311          "FunctionConfiguration$MemorySize": "<p>The amount of memory available to the function at runtime. </p>",
  1312          "UpdateFunctionConfigurationRequest$MemorySize": "<p>The amount of <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-memory.html\">memory available to the function</a> at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>"
  1313        }
  1314      },
  1315      "NameSpacedFunctionArn": {
  1316        "base": null,
  1317        "refs": {
  1318          "FunctionConfiguration$FunctionArn": "<p>The function's Amazon Resource Name (ARN).</p>"
  1319        }
  1320      },
  1321      "NamespacedFunctionName": {
  1322        "base": null,
  1323        "refs": {
  1324          "FunctionConfiguration$FunctionName": "<p>The name of the function.</p>",
  1325          "GetFunctionConfigurationRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
  1326          "GetFunctionRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
  1327          "GetPolicyRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
  1328          "InvocationRequest$FunctionName": "<p>The name of the Lambda function, version, or alias.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code> (name-only), <code>my-function:v1</code> (with alias).</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>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.</p>",
  1329          "InvokeAsyncRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>my-function</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:my-function</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:my-function</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>",
  1330          "ListVersionsByFunctionRequest$FunctionName": "<p>The name of the Lambda function.</p> <p class=\"title\"> <b>Name formats</b> </p> <ul> <li> <p> <b>Function name</b> - <code>MyFunction</code>.</p> </li> <li> <p> <b>Function ARN</b> - <code>arn:aws:lambda:us-west-2:123456789012:function:MyFunction</code>.</p> </li> <li> <p> <b>Partial ARN</b> - <code>123456789012:function:MyFunction</code>.</p> </li> </ul> <p>The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.</p>"
  1331        }
  1332      },
  1333      "NamespacedStatementId": {
  1334        "base": null,
  1335        "refs": {
  1336          "RemovePermissionRequest$StatementId": "<p>Statement ID of the permission to remove.</p>"
  1337        }
  1338      },
  1339      "NonNegativeInteger": {
  1340        "base": null,
  1341        "refs": {
  1342          "GetProvisionedConcurrencyConfigResponse$AvailableProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency available.</p>",
  1343          "GetProvisionedConcurrencyConfigResponse$AllocatedProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency allocated.</p>",
  1344          "ProvisionedConcurrencyConfigListItem$AvailableProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency available.</p>",
  1345          "ProvisionedConcurrencyConfigListItem$AllocatedProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency allocated.</p>",
  1346          "PutProvisionedConcurrencyConfigResponse$AvailableProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency available.</p>",
  1347          "PutProvisionedConcurrencyConfigResponse$AllocatedProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency allocated.</p>"
  1348        }
  1349      },
  1350      "OnFailure": {
  1351        "base": "<p>A destination for events that failed processing.</p>",
  1352        "refs": {
  1353          "DestinationConfig$OnFailure": "<p>The destination configuration for failed invocations.</p>"
  1354        }
  1355      },
  1356      "OnSuccess": {
  1357        "base": "<p>A destination for events that were processed successfully.</p>",
  1358        "refs": {
  1359          "DestinationConfig$OnSuccess": "<p>The destination configuration for successful invocations.</p>"
  1360        }
  1361      },
  1362      "OrganizationId": {
  1363        "base": null,
  1364        "refs": {
  1365          "AddLayerVersionPermissionRequest$OrganizationId": "<p>With the principal set to <code>*</code>, grant permission to all accounts in the specified organization.</p>"
  1366        }
  1367      },
  1368      "PackageType": {
  1369        "base": null,
  1370        "refs": {
  1371          "CreateFunctionRequest$PackageType": "<p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for ZIP archive.</p>",
  1372          "FunctionConfiguration$PackageType": "<p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for .zip file archive.</p>"
  1373        }
  1374      },
  1375      "ParallelizationFactor": {
  1376        "base": null,
  1377        "refs": {
  1378          "CreateEventSourceMappingRequest$ParallelizationFactor": "<p>(Streams only) The number of batches to process from each shard concurrently.</p>",
  1379          "EventSourceMappingConfiguration$ParallelizationFactor": "<p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>",
  1380          "UpdateEventSourceMappingRequest$ParallelizationFactor": "<p>(Streams only) The number of batches to process from each shard concurrently.</p>"
  1381        }
  1382      },
  1383      "PolicyLengthExceededException": {
  1384        "base": "<p>The permissions policy for the resource is too large. <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/limits.html\">Learn more</a> </p>",
  1385        "refs": {
  1386        }
  1387      },
  1388      "PositiveInteger": {
  1389        "base": null,
  1390        "refs": {
  1391          "GetProvisionedConcurrencyConfigResponse$RequestedProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency requested.</p>",
  1392          "ProvisionedConcurrencyConfigListItem$RequestedProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency requested.</p>",
  1393          "PutProvisionedConcurrencyConfigRequest$ProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency to allocate for the version or alias.</p>",
  1394          "PutProvisionedConcurrencyConfigResponse$RequestedProvisionedConcurrentExecutions": "<p>The amount of provisioned concurrency requested.</p>"
  1395        }
  1396      },
  1397      "PreconditionFailedException": {
  1398        "base": "<p>The RevisionId provided does not match the latest RevisionId for the Lambda function or alias. Call the <code>GetFunction</code> or the <code>GetAlias</code> API to retrieve the latest RevisionId for your resource.</p>",
  1399        "refs": {
  1400        }
  1401      },
  1402      "Principal": {
  1403        "base": null,
  1404        "refs": {
  1405          "AddPermissionRequest$Principal": "<p>The Amazon Web Services service or account that invokes the function. If you specify a service, use <code>SourceArn</code> or <code>SourceAccount</code> to limit who can invoke the function through that service.</p>"
  1406        }
  1407      },
  1408      "ProvisionedConcurrencyConfigList": {
  1409        "base": null,
  1410        "refs": {
  1411          "ListProvisionedConcurrencyConfigsResponse$ProvisionedConcurrencyConfigs": "<p>A list of provisioned concurrency configurations.</p>"
  1412        }
  1413      },
  1414      "ProvisionedConcurrencyConfigListItem": {
  1415        "base": "<p>Details about the provisioned concurrency configuration for a function alias or version.</p>",
  1416        "refs": {
  1417          "ProvisionedConcurrencyConfigList$member": null
  1418        }
  1419      },
  1420      "ProvisionedConcurrencyConfigNotFoundException": {
  1421        "base": "<p>The specified configuration does not exist.</p>",
  1422        "refs": {
  1423        }
  1424      },
  1425      "ProvisionedConcurrencyStatusEnum": {
  1426        "base": null,
  1427        "refs": {
  1428          "GetProvisionedConcurrencyConfigResponse$Status": "<p>The status of the allocation process.</p>",
  1429          "ProvisionedConcurrencyConfigListItem$Status": "<p>The status of the allocation process.</p>",
  1430          "PutProvisionedConcurrencyConfigResponse$Status": "<p>The status of the allocation process.</p>"
  1431        }
  1432      },
  1433      "PublishLayerVersionRequest": {
  1434        "base": null,
  1435        "refs": {
  1436        }
  1437      },
  1438      "PublishLayerVersionResponse": {
  1439        "base": null,
  1440        "refs": {
  1441        }
  1442      },
  1443      "PublishVersionRequest": {
  1444        "base": null,
  1445        "refs": {
  1446        }
  1447      },
  1448      "PutFunctionCodeSigningConfigRequest": {
  1449        "base": null,
  1450        "refs": {
  1451        }
  1452      },
  1453      "PutFunctionCodeSigningConfigResponse": {
  1454        "base": null,
  1455        "refs": {
  1456        }
  1457      },
  1458      "PutFunctionConcurrencyRequest": {
  1459        "base": null,
  1460        "refs": {
  1461        }
  1462      },
  1463      "PutFunctionEventInvokeConfigRequest": {
  1464        "base": null,
  1465        "refs": {
  1466        }
  1467      },
  1468      "PutProvisionedConcurrencyConfigRequest": {
  1469        "base": null,
  1470        "refs": {
  1471        }
  1472      },
  1473      "PutProvisionedConcurrencyConfigResponse": {
  1474        "base": null,
  1475        "refs": {
  1476        }
  1477      },
  1478      "Qualifier": {
  1479        "base": null,
  1480        "refs": {
  1481          "AddPermissionRequest$Qualifier": "<p>Specify a version or alias to add permissions to a published version of the function.</p>",
  1482          "DeleteFunctionEventInvokeConfigRequest$Qualifier": "<p>A version number or alias name.</p>",
  1483          "DeleteFunctionRequest$Qualifier": "<p>Specify a version to delete. You can't delete a version that's referenced by an alias.</p>",
  1484          "DeleteProvisionedConcurrencyConfigRequest$Qualifier": "<p>The version number or alias name.</p>",
  1485          "GetFunctionConfigurationRequest$Qualifier": "<p>Specify a version or alias to get details about a published version of the function.</p>",
  1486          "GetFunctionEventInvokeConfigRequest$Qualifier": "<p>A version number or alias name.</p>",
  1487          "GetFunctionRequest$Qualifier": "<p>Specify a version or alias to get details about a published version of the function.</p>",
  1488          "GetPolicyRequest$Qualifier": "<p>Specify a version or alias to get the policy for that resource.</p>",
  1489          "GetProvisionedConcurrencyConfigRequest$Qualifier": "<p>The version number or alias name.</p>",
  1490          "InvocationRequest$Qualifier": "<p>Specify a version or alias to invoke a published version of the function.</p>",
  1491          "PutFunctionEventInvokeConfigRequest$Qualifier": "<p>A version number or alias name.</p>",
  1492          "PutProvisionedConcurrencyConfigRequest$Qualifier": "<p>The version number or alias name.</p>",
  1493          "RemovePermissionRequest$Qualifier": "<p>Specify a version or alias to remove permissions from a published version of the function.</p>",
  1494          "UpdateFunctionEventInvokeConfigRequest$Qualifier": "<p>A version number or alias name.</p>"
  1495        }
  1496      },
  1497      "Queue": {
  1498        "base": null,
  1499        "refs": {
  1500          "Queues$member": null
  1501        }
  1502      },
  1503      "Queues": {
  1504        "base": null,
  1505        "refs": {
  1506          "CreateEventSourceMappingRequest$Queues": "<p> (MQ) The name of the Amazon MQ broker destination queue to consume. </p>",
  1507          "EventSourceMappingConfiguration$Queues": "<p> (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.</p>"
  1508        }
  1509      },
  1510      "RemoveLayerVersionPermissionRequest": {
  1511        "base": null,
  1512        "refs": {
  1513        }
  1514      },
  1515      "RemovePermissionRequest": {
  1516        "base": null,
  1517        "refs": {
  1518        }
  1519      },
  1520      "RequestTooLargeException": {
  1521        "base": "<p>The request payload exceeded the <code>Invoke</code> request body JSON input limit. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/limits.html\">Limits</a>. </p>",
  1522        "refs": {
  1523        }
  1524      },
  1525      "ReservedConcurrentExecutions": {
  1526        "base": null,
  1527        "refs": {
  1528          "Concurrency$ReservedConcurrentExecutions": "<p>The number of concurrent executions that are reserved for this function. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html\">Managing Concurrency</a>.</p>",
  1529          "GetFunctionConcurrencyResponse$ReservedConcurrentExecutions": "<p>The number of simultaneous executions that are reserved for the function.</p>",
  1530          "PutFunctionConcurrencyRequest$ReservedConcurrentExecutions": "<p>The number of simultaneous executions to reserve for the function.</p>"
  1531        }
  1532      },
  1533      "ResourceArn": {
  1534        "base": null,
  1535        "refs": {
  1536          "DeadLetterConfig$TargetArn": "<p>The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.</p>"
  1537        }
  1538      },
  1539      "ResourceConflictException": {
  1540        "base": "<p>The resource already exists, or another operation is in progress.</p>",
  1541        "refs": {
  1542        }
  1543      },
  1544      "ResourceInUseException": {
  1545        "base": "<p>The operation conflicts with the resource's availability. For example, you attempted to update an EventSource Mapping in CREATING, or tried to delete a EventSource mapping currently in the UPDATING state.</p>",
  1546        "refs": {
  1547        }
  1548      },
  1549      "ResourceNotFoundException": {
  1550        "base": "<p>The resource specified in the request does not exist.</p>",
  1551        "refs": {
  1552        }
  1553      },
  1554      "ResourceNotReadyException": {
  1555        "base": "<p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>",
  1556        "refs": {
  1557        }
  1558      },
  1559      "RoleArn": {
  1560        "base": null,
  1561        "refs": {
  1562          "CreateFunctionRequest$Role": "<p>The Amazon Resource Name (ARN) of the function's execution role.</p>",
  1563          "FunctionConfiguration$Role": "<p>The function's execution role.</p>",
  1564          "UpdateFunctionConfigurationRequest$Role": "<p>The Amazon Resource Name (ARN) of the function's execution role.</p>"
  1565        }
  1566      },
  1567      "Runtime": {
  1568        "base": null,
  1569        "refs": {
  1570          "CompatibleRuntimes$member": null,
  1571          "CreateFunctionRequest$Runtime": "<p>The identifier of the function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html\">runtime</a>.</p>",
  1572          "FunctionConfiguration$Runtime": "<p>The runtime environment for the Lambda function.</p>",
  1573          "ListLayerVersionsRequest$CompatibleRuntime": "<p>A runtime identifier. For example, <code>go1.x</code>.</p>",
  1574          "ListLayersRequest$CompatibleRuntime": "<p>A runtime identifier. For example, <code>go1.x</code>.</p>",
  1575          "UpdateFunctionConfigurationRequest$Runtime": "<p>The identifier of the function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html\">runtime</a>.</p>"
  1576        }
  1577      },
  1578      "S3Bucket": {
  1579        "base": null,
  1580        "refs": {
  1581          "FunctionCode$S3Bucket": "<p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.</p>",
  1582          "LayerVersionContentInput$S3Bucket": "<p>The Amazon S3 bucket of the layer archive.</p>",
  1583          "UpdateFunctionCodeRequest$S3Bucket": "<p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.</p>"
  1584        }
  1585      },
  1586      "S3Key": {
  1587        "base": null,
  1588        "refs": {
  1589          "FunctionCode$S3Key": "<p>The Amazon S3 key of the deployment package.</p>",
  1590          "LayerVersionContentInput$S3Key": "<p>The Amazon S3 key of the layer archive.</p>",
  1591          "UpdateFunctionCodeRequest$S3Key": "<p>The Amazon S3 key of the deployment package.</p>"
  1592        }
  1593      },
  1594      "S3ObjectVersion": {
  1595        "base": null,
  1596        "refs": {
  1597          "FunctionCode$S3ObjectVersion": "<p>For versioned objects, the version of the deployment package object to use.</p>",
  1598          "LayerVersionContentInput$S3ObjectVersion": "<p>For versioned objects, the version of the layer archive object to use.</p>",
  1599          "UpdateFunctionCodeRequest$S3ObjectVersion": "<p>For versioned objects, the version of the deployment package object to use.</p>"
  1600        }
  1601      },
  1602      "SecurityGroupId": {
  1603        "base": null,
  1604        "refs": {
  1605          "SecurityGroupIds$member": null
  1606        }
  1607      },
  1608      "SecurityGroupIds": {
  1609        "base": null,
  1610        "refs": {
  1611          "VpcConfig$SecurityGroupIds": "<p>A list of VPC security groups IDs.</p>",
  1612          "VpcConfigResponse$SecurityGroupIds": "<p>A list of VPC security groups IDs.</p>"
  1613        }
  1614      },
  1615      "SelfManagedEventSource": {
  1616        "base": "<p>The self-managed Apache Kafka cluster for your event source.</p>",
  1617        "refs": {
  1618          "CreateEventSourceMappingRequest$SelfManagedEventSource": "<p>The Self-Managed Apache Kafka cluster to send records.</p>",
  1619          "EventSourceMappingConfiguration$SelfManagedEventSource": "<p>The self-managed Apache Kafka cluster for your event source.</p>"
  1620        }
  1621      },
  1622      "SensitiveString": {
  1623        "base": null,
  1624        "refs": {
  1625          "EnvironmentError$Message": "<p>The error message.</p>",
  1626          "ImageConfigError$Message": "<p>Error message.</p>"
  1627        }
  1628      },
  1629      "ServiceException": {
  1630        "base": "<p>The Lambda service encountered an internal error.</p>",
  1631        "refs": {
  1632        }
  1633      },
  1634      "SigningProfileVersionArns": {
  1635        "base": null,
  1636        "refs": {
  1637          "AllowedPublishers$SigningProfileVersionArns": "<p>The Amazon Resource Name (ARN) for each of the signing profiles. A signing profile defines a trusted user who can sign a code package. </p>"
  1638        }
  1639      },
  1640      "SourceAccessConfiguration": {
  1641        "base": "<p>To secure and define access to your event source, you can specify the authentication protocol, VPC components, or virtual host.</p>",
  1642        "refs": {
  1643          "SourceAccessConfigurations$member": null
  1644        }
  1645      },
  1646      "SourceAccessConfigurations": {
  1647        "base": null,
  1648        "refs": {
  1649          "CreateEventSourceMappingRequest$SourceAccessConfigurations": "<p>An array of authentication protocols or VPC components required to secure your event source.</p>",
  1650          "EventSourceMappingConfiguration$SourceAccessConfigurations": "<p>An array of the authentication protocol, VPC components, or virtual host to secure and define your event source.</p>",
  1651          "UpdateEventSourceMappingRequest$SourceAccessConfigurations": "<p>An array of authentication protocols or VPC components required to secure your event source.</p>"
  1652        }
  1653      },
  1654      "SourceAccessType": {
  1655        "base": null,
  1656        "refs": {
  1657          "SourceAccessConfiguration$Type": "<p>The type of authentication protocol, VPC components, or virtual host for your event source. For example: <code>\"Type\":\"SASL_SCRAM_512_AUTH\"</code>.</p> <ul> <li> <p> <code>BASIC_AUTH</code> - (Amazon MQ) The Secrets Manager secret that stores your broker credentials.</p> </li> <li> <p> <code>BASIC_AUTH</code> - (Self-managed Apache Kafka) The Secrets Manager ARN of your secret key used for SASL/PLAIN authentication of your Apache Kafka brokers.</p> </li> <li> <p> <code>VPC_SUBNET</code> - The subnets associated with your VPC. Lambda connects to these subnets to fetch data from your self-managed Apache Kafka cluster.</p> </li> <li> <p> <code>VPC_SECURITY_GROUP</code> - The VPC security group used to manage access to your self-managed Apache Kafka brokers.</p> </li> <li> <p> <code>SASL_SCRAM_256_AUTH</code> - The Secrets Manager ARN of your secret key used for SASL SCRAM-256 authentication of your self-managed Apache Kafka brokers.</p> </li> <li> <p> <code>SASL_SCRAM_512_AUTH</code> - The Secrets Manager ARN of your secret key used for SASL SCRAM-512 authentication of your self-managed Apache Kafka brokers.</p> </li> <li> <p> <code>VIRTUAL_HOST</code> - (Amazon MQ) The name of the virtual host in your RabbitMQ broker. Lambda uses this RabbitMQ host as the event source.</p> </li> </ul>"
  1658        }
  1659      },
  1660      "SourceOwner": {
  1661        "base": null,
  1662        "refs": {
  1663          "AddPermissionRequest$SourceAccount": "<p>For Amazon S3, the ID of the account that owns the resource. Use this together with <code>SourceArn</code> 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.</p>"
  1664        }
  1665      },
  1666      "State": {
  1667        "base": null,
  1668        "refs": {
  1669          "FunctionConfiguration$State": "<p>The current state of the function. When the state is <code>Inactive</code>, you can reactivate the function by invoking it.</p>"
  1670        }
  1671      },
  1672      "StateReason": {
  1673        "base": null,
  1674        "refs": {
  1675          "FunctionConfiguration$StateReason": "<p>The reason for the function's current state.</p>"
  1676        }
  1677      },
  1678      "StateReasonCode": {
  1679        "base": null,
  1680        "refs": {
  1681          "FunctionConfiguration$StateReasonCode": "<p>The reason code for the function's current state. When the code is <code>Creating</code>, you can't invoke or modify the function.</p>"
  1682        }
  1683      },
  1684      "StatementId": {
  1685        "base": null,
  1686        "refs": {
  1687          "AddLayerVersionPermissionRequest$StatementId": "<p>An identifier that distinguishes the policy from others on the same layer version.</p>",
  1688          "AddPermissionRequest$StatementId": "<p>A statement identifier that differentiates the statement from others in the same policy.</p>",
  1689          "RemoveLayerVersionPermissionRequest$StatementId": "<p>The identifier that was specified when the statement was added.</p>"
  1690        }
  1691      },
  1692      "String": {
  1693        "base": null,
  1694        "refs": {
  1695          "AddLayerVersionPermissionRequest$RevisionId": "<p>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.</p>",
  1696          "AddLayerVersionPermissionResponse$Statement": "<p>The permission statement.</p>",
  1697          "AddLayerVersionPermissionResponse$RevisionId": "<p>A unique identifier for the current revision of the policy.</p>",
  1698          "AddPermissionRequest$RevisionId": "<p>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.</p>",
  1699          "AddPermissionResponse$Statement": "<p>The permission statement that's added to the function policy.</p>",
  1700          "AliasConfiguration$RevisionId": "<p>A unique identifier that changes when you update the alias.</p>",
  1701          "CodeSigningConfigNotFoundException$Type": null,
  1702          "CodeSigningConfigNotFoundException$Message": null,
  1703          "CodeStorageExceededException$Type": "<p>The exception type.</p>",
  1704          "CodeStorageExceededException$message": null,
  1705          "CodeVerificationFailedException$Type": null,
  1706          "CodeVerificationFailedException$Message": null,
  1707          "DeleteEventSourceMappingRequest$UUID": "<p>The identifier of the event source mapping.</p>",
  1708          "EC2AccessDeniedException$Type": null,
  1709          "EC2AccessDeniedException$Message": null,
  1710          "EC2ThrottledException$Type": null,
  1711          "EC2ThrottledException$Message": null,
  1712          "EC2UnexpectedException$Type": null,
  1713          "EC2UnexpectedException$Message": null,
  1714          "EC2UnexpectedException$EC2ErrorCode": null,
  1715          "EFSIOException$Type": null,
  1716          "EFSIOException$Message": null,
  1717          "EFSMountConnectivityException$Type": null,
  1718          "EFSMountConnectivityException$Message": null,
  1719          "EFSMountFailureException$Type": null,
  1720          "EFSMountFailureException$Message": null,
  1721          "EFSMountTimeoutException$Type": null,
  1722          "EFSMountTimeoutException$Message": null,
  1723          "ENILimitReachedException$Type": null,
  1724          "ENILimitReachedException$Message": null,
  1725          "EnvironmentError$ErrorCode": "<p>The error code.</p>",
  1726          "EventSourceMappingConfiguration$UUID": "<p>The identifier of the event source mapping.</p>",
  1727          "EventSourceMappingConfiguration$LastProcessingResult": "<p>The result of the last Lambda invocation of your function.</p>",
  1728          "EventSourceMappingConfiguration$State": "<p>The state of the event source mapping. It can be one of the following: <code>Creating</code>, <code>Enabling</code>, <code>Enabled</code>, <code>Disabling</code>, <code>Disabled</code>, <code>Updating</code>, or <code>Deleting</code>.</p>",
  1729          "EventSourceMappingConfiguration$StateTransitionReason": "<p>Indicates whether a user or Lambda made the last change to the event source mapping.</p>",
  1730          "FunctionCode$ImageUri": "<p>URI of a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html\">container image</a> in the Amazon ECR registry.</p>",
  1731          "FunctionCodeLocation$RepositoryType": "<p>The service that's hosting the file.</p>",
  1732          "FunctionCodeLocation$Location": "<p>A presigned URL that you can use to download the deployment package.</p>",
  1733          "FunctionCodeLocation$ImageUri": "<p>URI of a container image in the Amazon ECR registry.</p>",
  1734          "FunctionCodeLocation$ResolvedImageUri": "<p>The resolved URI for the image.</p>",
  1735          "FunctionConfiguration$CodeSha256": "<p>The SHA256 hash of the function's deployment package.</p>",
  1736          "FunctionConfiguration$RevisionId": "<p>The latest updated revision of the function or alias.</p>",
  1737          "GetEventSourceMappingRequest$UUID": "<p>The identifier of the event source mapping.</p>",
  1738          "GetLayerVersionPolicyResponse$Policy": "<p>The policy document.</p>",
  1739          "GetLayerVersionPolicyResponse$RevisionId": "<p>A unique identifier for the current revision of the policy.</p>",
  1740          "GetPolicyResponse$Policy": "<p>The resource-based policy.</p>",
  1741          "GetPolicyResponse$RevisionId": "<p>A unique identifier for the current revision of the policy.</p>",
  1742          "GetProvisionedConcurrencyConfigResponse$StatusReason": "<p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>",
  1743          "ImageConfigError$ErrorCode": "<p>Error code.</p>",
  1744          "InvalidCodeSignatureException$Type": null,
  1745          "InvalidCodeSignatureException$Message": null,
  1746          "InvalidParameterValueException$Type": "<p>The exception type.</p>",
  1747          "InvalidParameterValueException$message": "<p>The exception message.</p>",
  1748          "InvalidRequestContentException$Type": "<p>The exception type.</p>",
  1749          "InvalidRequestContentException$message": "<p>The exception message.</p>",
  1750          "InvalidRuntimeException$Type": null,
  1751          "InvalidRuntimeException$Message": null,
  1752          "InvalidSecurityGroupIDException$Type": null,
  1753          "InvalidSecurityGroupIDException$Message": null,
  1754          "InvalidSubnetIDException$Type": null,
  1755          "InvalidSubnetIDException$Message": null,
  1756          "InvalidZipFileException$Type": null,
  1757          "InvalidZipFileException$Message": null,
  1758          "InvocationRequest$ClientContext": "<p>Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context object.</p>",
  1759          "InvocationResponse$FunctionError": "<p>If present, indicates that an error occurred during function execution. Details about the error are included in the response payload.</p>",
  1760          "InvocationResponse$LogResult": "<p>The last 4 KB of the execution log, which is base64 encoded.</p>",
  1761          "KMSAccessDeniedException$Type": null,
  1762          "KMSAccessDeniedException$Message": null,
  1763          "KMSDisabledException$Type": null,
  1764          "KMSDisabledException$Message": null,
  1765          "KMSInvalidStateException$Type": null,
  1766          "KMSInvalidStateException$Message": null,
  1767          "KMSNotFoundException$Type": null,
  1768          "KMSNotFoundException$Message": null,
  1769          "LayerVersionContentOutput$Location": "<p>A link to the layer archive in Amazon S3 that is valid for 10 minutes.</p>",
  1770          "LayerVersionContentOutput$CodeSha256": "<p>The SHA-256 hash of the layer archive.</p>",
  1771          "LayerVersionContentOutput$SigningProfileVersionArn": "<p>The Amazon Resource Name (ARN) for a signing profile version.</p>",
  1772          "LayerVersionContentOutput$SigningJobArn": "<p>The Amazon Resource Name (ARN) of a signing job.</p>",
  1773          "ListAliasesRequest$Marker": "<p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>",
  1774          "ListAliasesResponse$NextMarker": "<p>The pagination token that's included if more results are available.</p>",
  1775          "ListCodeSigningConfigsRequest$Marker": "<p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>",
  1776          "ListCodeSigningConfigsResponse$NextMarker": "<p>The pagination token that's included if more results are available.</p>",
  1777          "ListEventSourceMappingsRequest$Marker": "<p>A pagination token returned by a previous call.</p>",
  1778          "ListEventSourceMappingsResponse$NextMarker": "<p>A pagination token that's returned when the response doesn't contain all event source mappings.</p>",
  1779          "ListFunctionEventInvokeConfigsRequest$Marker": "<p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>",
  1780          "ListFunctionEventInvokeConfigsResponse$NextMarker": "<p>The pagination token that's included if more results are available.</p>",
  1781          "ListFunctionsByCodeSigningConfigRequest$Marker": "<p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>",
  1782          "ListFunctionsByCodeSigningConfigResponse$NextMarker": "<p>The pagination token that's included if more results are available.</p>",
  1783          "ListFunctionsRequest$Marker": "<p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>",
  1784          "ListFunctionsResponse$NextMarker": "<p>The pagination token that's included if more results are available.</p>",
  1785          "ListLayerVersionsRequest$Marker": "<p>A pagination token returned by a previous call.</p>",
  1786          "ListLayerVersionsResponse$NextMarker": "<p>A pagination token returned when the response doesn't contain all versions.</p>",
  1787          "ListLayersRequest$Marker": "<p>A pagination token returned by a previous call.</p>",
  1788          "ListLayersResponse$NextMarker": "<p>A pagination token returned when the response doesn't contain all layers.</p>",
  1789          "ListProvisionedConcurrencyConfigsRequest$Marker": "<p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>",
  1790          "ListProvisionedConcurrencyConfigsResponse$NextMarker": "<p>The pagination token that's included if more results are available.</p>",
  1791          "ListVersionsByFunctionRequest$Marker": "<p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>",
  1792          "ListVersionsByFunctionResponse$NextMarker": "<p>The pagination token that's included if more results are available.</p>",
  1793          "PolicyLengthExceededException$Type": null,
  1794          "PolicyLengthExceededException$message": null,
  1795          "PreconditionFailedException$Type": "<p>The exception type.</p>",
  1796          "PreconditionFailedException$message": "<p>The exception message.</p>",
  1797          "ProvisionedConcurrencyConfigListItem$StatusReason": "<p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>",
  1798          "ProvisionedConcurrencyConfigNotFoundException$Type": null,
  1799          "ProvisionedConcurrencyConfigNotFoundException$message": null,
  1800          "PublishVersionRequest$CodeSha256": "<p>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 <a>UpdateFunctionCode</a>.</p>",
  1801          "PublishVersionRequest$RevisionId": "<p>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.</p>",
  1802          "PutProvisionedConcurrencyConfigResponse$StatusReason": "<p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>",
  1803          "RemoveLayerVersionPermissionRequest$RevisionId": "<p>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.</p>",
  1804          "RemovePermissionRequest$RevisionId": "<p>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.</p>",
  1805          "RequestTooLargeException$Type": null,
  1806          "RequestTooLargeException$message": null,
  1807          "ResourceConflictException$Type": "<p>The exception type.</p>",
  1808          "ResourceConflictException$message": "<p>The exception message.</p>",
  1809          "ResourceInUseException$Type": null,
  1810          "ResourceInUseException$Message": null,
  1811          "ResourceNotFoundException$Type": null,
  1812          "ResourceNotFoundException$Message": null,
  1813          "ResourceNotReadyException$Type": "<p>The exception type.</p>",
  1814          "ResourceNotReadyException$message": "<p>The exception message.</p>",
  1815          "ServiceException$Type": null,
  1816          "ServiceException$Message": null,
  1817          "StringList$member": null,
  1818          "SubnetIPAddressLimitReachedException$Type": null,
  1819          "SubnetIPAddressLimitReachedException$Message": null,
  1820          "TooManyRequestsException$retryAfterSeconds": "<p>The number of seconds the caller should wait before retrying.</p>",
  1821          "TooManyRequestsException$Type": null,
  1822          "TooManyRequestsException$message": null,
  1823          "UnsupportedMediaTypeException$Type": null,
  1824          "UnsupportedMediaTypeException$message": null,
  1825          "UpdateAliasRequest$RevisionId": "<p>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.</p>",
  1826          "UpdateEventSourceMappingRequest$UUID": "<p>The identifier of the event source mapping.</p>",
  1827          "UpdateFunctionCodeRequest$ImageUri": "<p>URI of a container image in the Amazon ECR registry.</p>",
  1828          "UpdateFunctionCodeRequest$RevisionId": "<p>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.</p>",
  1829          "UpdateFunctionConfigurationRequest$RevisionId": "<p>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.</p>"
  1830        }
  1831      },
  1832      "StringList": {
  1833        "base": null,
  1834        "refs": {
  1835          "ImageConfig$EntryPoint": "<p>Specifies the entry point to their application, which is typically the location of the runtime executable.</p>",
  1836          "ImageConfig$Command": "<p>Specifies parameters that you want to pass in with ENTRYPOINT. </p>"
  1837        }
  1838      },
  1839      "SubnetIPAddressLimitReachedException": {
  1840        "base": "<p>Lambda was not able to set up VPC access for the Lambda function because one or more configured subnets has no available IP addresses.</p>",
  1841        "refs": {
  1842        }
  1843      },
  1844      "SubnetId": {
  1845        "base": null,
  1846        "refs": {
  1847          "SubnetIds$member": null
  1848        }
  1849      },
  1850      "SubnetIds": {
  1851        "base": null,
  1852        "refs": {
  1853          "VpcConfig$SubnetIds": "<p>A list of VPC subnet IDs.</p>",
  1854          "VpcConfigResponse$SubnetIds": "<p>A list of VPC subnet IDs.</p>"
  1855        }
  1856      },
  1857      "TagKey": {
  1858        "base": null,
  1859        "refs": {
  1860          "TagKeyList$member": null,
  1861          "Tags$key": null
  1862        }
  1863      },
  1864      "TagKeyList": {
  1865        "base": null,
  1866        "refs": {
  1867          "UntagResourceRequest$TagKeys": "<p>A list of tag keys to remove from the function.</p>"
  1868        }
  1869      },
  1870      "TagResourceRequest": {
  1871        "base": null,
  1872        "refs": {
  1873        }
  1874      },
  1875      "TagValue": {
  1876        "base": null,
  1877        "refs": {
  1878          "Tags$value": null
  1879        }
  1880      },
  1881      "Tags": {
  1882        "base": null,
  1883        "refs": {
  1884          "CreateFunctionRequest$Tags": "<p>A list of <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/tagging.html\">tags</a> to apply to the function.</p>",
  1885          "GetFunctionResponse$Tags": "<p>The function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/tagging.html\">tags</a>.</p>",
  1886          "ListTagsResponse$Tags": "<p>The function's tags.</p>",
  1887          "TagResourceRequest$Tags": "<p>A list of tags to apply to the function.</p>"
  1888        }
  1889      },
  1890      "ThrottleReason": {
  1891        "base": null,
  1892        "refs": {
  1893          "TooManyRequestsException$Reason": null
  1894        }
  1895      },
  1896      "Timeout": {
  1897        "base": null,
  1898        "refs": {
  1899          "CreateFunctionRequest$Timeout": "<p>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. For additional information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html\">Lambda execution environment</a>.</p>",
  1900          "FunctionConfiguration$Timeout": "<p>The amount of time in seconds that Lambda allows a function to run before stopping it.</p>",
  1901          "UpdateFunctionConfigurationRequest$Timeout": "<p>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. For additional information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html\">Lambda execution environment</a>.</p>"
  1902        }
  1903      },
  1904      "Timestamp": {
  1905        "base": null,
  1906        "refs": {
  1907          "CodeSigningConfig$LastModified": "<p>The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD). </p>",
  1908          "FunctionConfiguration$LastModified": "<p>The date and time that the function was last updated, in <a href=\"https://www.w3.org/TR/NOTE-datetime\">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>",
  1909          "GetLayerVersionResponse$CreatedDate": "<p>The date that the layer version was created, in <a href=\"https://www.w3.org/TR/NOTE-datetime\">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>",
  1910          "GetProvisionedConcurrencyConfigResponse$LastModified": "<p>The date and time that a user last updated the configuration, in <a href=\"https://www.iso.org/iso-8601-date-and-time-format.html\">ISO 8601 format</a>.</p>",
  1911          "LayerVersionsListItem$CreatedDate": "<p>The date that the version was created, in ISO 8601 format. For example, <code>2018-11-27T15:10:45.123+0000</code>.</p>",
  1912          "ProvisionedConcurrencyConfigListItem$LastModified": "<p>The date and time that a user last updated the configuration, in <a href=\"https://www.iso.org/iso-8601-date-and-time-format.html\">ISO 8601 format</a>.</p>",
  1913          "PublishLayerVersionResponse$CreatedDate": "<p>The date that the layer version was created, in <a href=\"https://www.w3.org/TR/NOTE-datetime\">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>",
  1914          "PutProvisionedConcurrencyConfigResponse$LastModified": "<p>The date and time that a user last updated the configuration, in <a href=\"https://www.iso.org/iso-8601-date-and-time-format.html\">ISO 8601 format</a>.</p>"
  1915        }
  1916      },
  1917      "TooManyRequestsException": {
  1918        "base": "<p>The request throughput limit was exceeded.</p>",
  1919        "refs": {
  1920        }
  1921      },
  1922      "Topic": {
  1923        "base": null,
  1924        "refs": {
  1925          "Topics$member": null
  1926        }
  1927      },
  1928      "Topics": {
  1929        "base": null,
  1930        "refs": {
  1931          "CreateEventSourceMappingRequest$Topics": "<p>The name of the Kafka topic.</p>",
  1932          "EventSourceMappingConfiguration$Topics": "<p>The name of the Kafka topic.</p>"
  1933        }
  1934      },
  1935      "TracingConfig": {
  1936        "base": "<p>The function's <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html\">X-Ray</a> tracing configuration. To sample and record incoming requests, set <code>Mode</code> to <code>Active</code>.</p>",
  1937        "refs": {
  1938          "CreateFunctionRequest$TracingConfig": "<p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html\">X-Ray</a>.</p>",
  1939          "UpdateFunctionConfigurationRequest$TracingConfig": "<p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html\">X-Ray</a>.</p>"
  1940        }
  1941      },
  1942      "TracingConfigResponse": {
  1943        "base": "<p>The function's X-Ray tracing configuration.</p>",
  1944        "refs": {
  1945          "FunctionConfiguration$TracingConfig": "<p>The function's X-Ray tracing configuration.</p>"
  1946        }
  1947      },
  1948      "TracingMode": {
  1949        "base": null,
  1950        "refs": {
  1951          "TracingConfig$Mode": "<p>The tracing mode.</p>",
  1952          "TracingConfigResponse$Mode": "<p>The tracing mode.</p>"
  1953        }
  1954      },
  1955      "TumblingWindowInSeconds": {
  1956        "base": null,
  1957        "refs": {
  1958          "CreateEventSourceMappingRequest$TumblingWindowInSeconds": "<p>(Streams only) The duration in seconds of a processing window. The range is between 1 second up to 900 seconds.</p>",
  1959          "EventSourceMappingConfiguration$TumblingWindowInSeconds": "<p>(Streams only) The duration in seconds of a processing window. The range is 1–900 seconds.</p>",
  1960          "UpdateEventSourceMappingRequest$TumblingWindowInSeconds": "<p>(Streams only) The duration in seconds of a processing window. The range is between 1 second up to 900 seconds.</p>"
  1961        }
  1962      },
  1963      "URI": {
  1964        "base": null,
  1965        "refs": {
  1966          "SourceAccessConfiguration$URI": "<p>The value for your chosen configuration in <code>Type</code>. For example: <code>\"URI\": \"arn:aws:secretsmanager:us-east-1:01234567890:secret:MyBrokerSecretName\"</code>.</p>"
  1967        }
  1968      },
  1969      "UnreservedConcurrentExecutions": {
  1970        "base": null,
  1971        "refs": {
  1972          "AccountLimit$UnreservedConcurrentExecutions": "<p>The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with <a>PutFunctionConcurrency</a>.</p>"
  1973        }
  1974      },
  1975      "UnsupportedMediaTypeException": {
  1976        "base": "<p>The content type of the <code>Invoke</code> request body is not JSON.</p>",
  1977        "refs": {
  1978        }
  1979      },
  1980      "UntagResourceRequest": {
  1981        "base": null,
  1982        "refs": {
  1983        }
  1984      },
  1985      "UpdateAliasRequest": {
  1986        "base": null,
  1987        "refs": {
  1988        }
  1989      },
  1990      "UpdateCodeSigningConfigRequest": {
  1991        "base": null,
  1992        "refs": {
  1993        }
  1994      },
  1995      "UpdateCodeSigningConfigResponse": {
  1996        "base": null,
  1997        "refs": {
  1998        }
  1999      },
  2000      "UpdateEventSourceMappingRequest": {
  2001        "base": null,
  2002        "refs": {
  2003        }
  2004      },
  2005      "UpdateFunctionCodeRequest": {
  2006        "base": null,
  2007        "refs": {
  2008        }
  2009      },
  2010      "UpdateFunctionConfigurationRequest": {
  2011        "base": null,
  2012        "refs": {
  2013        }
  2014      },
  2015      "UpdateFunctionEventInvokeConfigRequest": {
  2016        "base": null,
  2017        "refs": {
  2018        }
  2019      },
  2020      "Version": {
  2021        "base": null,
  2022        "refs": {
  2023          "AliasConfiguration$FunctionVersion": "<p>The function version that the alias invokes.</p>",
  2024          "CreateAliasRequest$FunctionVersion": "<p>The function version that the alias invokes.</p>",
  2025          "FunctionConfiguration$Version": "<p>The version of the Lambda function.</p>",
  2026          "InvocationResponse$ExecutedVersion": "<p>The version of the function that executed. When you invoke a function with an alias, this indicates which version the alias resolved to.</p>",
  2027          "ListAliasesRequest$FunctionVersion": "<p>Specify a function version to only list aliases that invoke that version.</p>",
  2028          "UpdateAliasRequest$FunctionVersion": "<p>The function version that the alias invokes.</p>"
  2029        }
  2030      },
  2031      "VpcConfig": {
  2032        "base": "<p>The VPC security groups and subnets that are attached to a Lambda function. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html\">VPC Settings</a>.</p>",
  2033        "refs": {
  2034          "CreateFunctionRequest$VpcConfig": "<p>For network connectivity to Amazon Web Services 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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html\">VPC Settings</a>.</p>",
  2035          "UpdateFunctionConfigurationRequest$VpcConfig": "<p>For network connectivity to Amazon Web Services 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 <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html\">VPC Settings</a>.</p>"
  2036        }
  2037      },
  2038      "VpcConfigResponse": {
  2039        "base": "<p>The VPC security groups and subnets that are attached to a Lambda function.</p>",
  2040        "refs": {
  2041          "FunctionConfiguration$VpcConfig": "<p>The function's networking configuration.</p>"
  2042        }
  2043      },
  2044      "VpcId": {
  2045        "base": null,
  2046        "refs": {
  2047          "VpcConfigResponse$VpcId": "<p>The ID of the VPC.</p>"
  2048        }
  2049      },
  2050      "Weight": {
  2051        "base": null,
  2052        "refs": {
  2053          "AdditionalVersionWeights$value": null
  2054        }
  2055      },
  2056      "WorkingDirectory": {
  2057        "base": null,
  2058        "refs": {
  2059          "ImageConfig$WorkingDirectory": "<p>Specifies the working directory.</p>"
  2060        }
  2061      }
  2062    }
  2063  }