/// <reference types="node" />
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
import { Readable } from "stream";
import { LambdaServiceException as __BaseException } from "./LambdaServiceException";
/**
 * <p>Limits that are related to concurrency and storage. All file and storage sizes are in bytes.</p>
 */
export interface AccountLimit {
    /**
     * <p>The amount of storage space that you can use for all deployment packages and layer archives.</p>
     */
    TotalCodeSize?: number;
    /**
     * <p>The maximum size of a function's deployment package and layers when they're extracted.</p>
     */
    CodeSizeUnzipped?: number;
    /**
     * <p>The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger
     *       files.</p>
     */
    CodeSizeZipped?: number;
    /**
     * <p>The maximum number of simultaneous function executions.</p>
     */
    ConcurrentExecutions?: number;
    /**
     * <p>The maximum number of simultaneous function executions, minus the capacity that's reserved for individual
     *       functions with <a>PutFunctionConcurrency</a>.</p>
     */
    UnreservedConcurrentExecutions?: number;
}
/**
 * <p>The number of functions and amount of storage in use.</p>
 */
export interface AccountUsage {
    /**
     * <p>The amount of storage space, in bytes, that's being used by deployment packages and layer archives.</p>
     */
    TotalCodeSize?: number;
    /**
     * <p>The number of Lambda functions.</p>
     */
    FunctionCount?: number;
}
export interface AddLayerVersionPermissionRequest {
    /**
     * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
     */
    LayerName: string | undefined;
    /**
     * <p>The version number.</p>
     */
    VersionNumber: number | undefined;
    /**
     * <p>An identifier that distinguishes the policy from others on the same layer version.</p>
     */
    StatementId: string | undefined;
    /**
     * <p>The API action that grants access to the layer. For example, <code>lambda:GetLayerVersion</code>.</p>
     */
    Action: string | undefined;
    /**
     * <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>
     */
    Principal: string | undefined;
    /**
     * <p>With the principal set to <code>*</code>, grant permission to all accounts in the specified
     *       organization.</p>
     */
    OrganizationId?: string;
    /**
     * <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>
     */
    RevisionId?: string;
}
export interface AddLayerVersionPermissionResponse {
    /**
     * <p>The permission statement.</p>
     */
    Statement?: string;
    /**
     * <p>A unique identifier for the current revision of the policy.</p>
     */
    RevisionId?: string;
}
/**
 * <p>One of the parameters in the request is invalid.</p>
 */
export declare class InvalidParameterValueException extends __BaseException {
    readonly name: "InvalidParameterValueException";
    readonly $fault: "client";
    /**
     * <p>The exception type.</p>
     */
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
}
/**
 * <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>
 */
export declare class PolicyLengthExceededException extends __BaseException {
    readonly name: "PolicyLengthExceededException";
    readonly $fault: "client";
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<PolicyLengthExceededException, __BaseException>);
}
/**
 * <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>
 */
export declare class PreconditionFailedException extends __BaseException {
    readonly name: "PreconditionFailedException";
    readonly $fault: "client";
    /**
     * <p>The exception type.</p>
     */
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>);
}
/**
 * <p>The resource already exists, or another operation is in progress.</p>
 */
export declare class ResourceConflictException extends __BaseException {
    readonly name: "ResourceConflictException";
    readonly $fault: "client";
    /**
     * <p>The exception type.</p>
     */
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
}
/**
 * <p>The resource specified in the request does not exist.</p>
 */
export declare class ResourceNotFoundException extends __BaseException {
    readonly name: "ResourceNotFoundException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
}
/**
 * <p>The Lambda service encountered an internal error.</p>
 */
export declare class ServiceException extends __BaseException {
    readonly name: "ServiceException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
}
export declare enum ThrottleReason {
    CallerRateLimitExceeded = "CallerRateLimitExceeded",
    ConcurrentInvocationLimitExceeded = "ConcurrentInvocationLimitExceeded",
    FunctionInvocationRateLimitExceeded = "FunctionInvocationRateLimitExceeded",
    ReservedFunctionConcurrentInvocationLimitExceeded = "ReservedFunctionConcurrentInvocationLimitExceeded",
    ReservedFunctionInvocationRateLimitExceeded = "ReservedFunctionInvocationRateLimitExceeded"
}
/**
 * <p>The request throughput limit was exceeded.</p>
 */
export declare class TooManyRequestsException extends __BaseException {
    readonly name: "TooManyRequestsException";
    readonly $fault: "client";
    /**
     * <p>The number of seconds the caller should wait before retrying.</p>
     */
    retryAfterSeconds?: string;
    Type?: string;
    Reason?: ThrottleReason | string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
}
export declare enum FunctionUrlAuthType {
    AWS_IAM = "AWS_IAM",
    NONE = "NONE"
}
export interface AddPermissionRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>A statement identifier that differentiates the statement from others in the same policy.</p>
     */
    StatementId: string | undefined;
    /**
     * <p>The action that the principal can use on the function. For example, <code>lambda:InvokeFunction</code> or
     *         <code>lambda:GetFunction</code>.</p>
     */
    Action: string | undefined;
    /**
     * <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>
     */
    Principal: string | undefined;
    /**
     * <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>
     */
    SourceArn?: string;
    /**
     * <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>
     */
    SourceAccount?: string;
    /**
     * <p>For Alexa Smart Home functions, a token that must be supplied by the invoker.</p>
     */
    EventSourceToken?: string;
    /**
     * <p>Specify a version or alias to add permissions to a published version of the function.</p>
     */
    Qualifier?: string;
    /**
     * <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>
     */
    RevisionId?: string;
    /**
     * <p>The identifier for your organization in Organizations. Use this to grant permissions to all the Amazon Web Services
     *       accounts under this organization.</p>
     */
    PrincipalOrgID?: string;
    /**
     * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
     *   <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
     *   see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
     */
    FunctionUrlAuthType?: FunctionUrlAuthType | string;
}
export interface AddPermissionResponse {
    /**
     * <p>The permission statement that's added to the function policy.</p>
     */
    Statement?: string;
}
/**
 * <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>
 */
export interface AliasRoutingConfiguration {
    /**
     * <p>The second version, and the percentage of traffic that's routed to it.</p>
     */
    AdditionalVersionWeights?: Record<string, number>;
}
/**
 * <p>Provides configuration information about a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>.</p>
 */
export interface AliasConfiguration {
    /**
     * <p>The Amazon Resource Name (ARN) of the alias.</p>
     */
    AliasArn?: string;
    /**
     * <p>The name of the alias.</p>
     */
    Name?: string;
    /**
     * <p>The function version that the alias invokes.</p>
     */
    FunctionVersion?: string;
    /**
     * <p>A description of the alias.</p>
     */
    Description?: string;
    /**
     * <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>
     */
    RoutingConfig?: AliasRoutingConfiguration;
    /**
     * <p>A unique identifier that changes when you update the alias.</p>
     */
    RevisionId?: string;
}
/**
 * <p>List of signing profiles that can sign a code package. </p>
 */
export interface AllowedPublishers {
    /**
     * <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>
     */
    SigningProfileVersionArns: string[] | undefined;
}
/**
 * <p>Specific configuration settings for an Amazon Managed Streaming for Apache Kafka (Amazon MSK) event source.</p>
 */
export interface AmazonManagedKafkaEventSourceConfig {
    /**
     * <p>The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources.
     *   After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see
     *   <a>services-msk-consumer-group-id</a>.</p>
     */
    ConsumerGroupId?: string;
}
export declare enum Architecture {
    arm64 = "arm64",
    x86_64 = "x86_64"
}
export interface CreateAliasRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The name of the alias.</p>
     */
    Name: string | undefined;
    /**
     * <p>The function version that the alias invokes.</p>
     */
    FunctionVersion: string | undefined;
    /**
     * <p>A description of the alias.</p>
     */
    Description?: string;
    /**
     * <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>
     */
    RoutingConfig?: AliasRoutingConfiguration;
}
export declare enum CodeSigningPolicy {
    Enforce = "Enforce",
    Warn = "Warn"
}
/**
 * <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>
 */
export interface CodeSigningPolicies {
    /**
     * <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>
     */
    UntrustedArtifactOnDeployment?: CodeSigningPolicy | string;
}
export interface CreateCodeSigningConfigRequest {
    /**
     * <p>Descriptive name for this code signing configuration.</p>
     */
    Description?: string;
    /**
     * <p>Signing profiles for this code signing configuration.</p>
     */
    AllowedPublishers: AllowedPublishers | undefined;
    /**
     * <p>The code signing policies define the actions to take if the validation checks fail. </p>
     */
    CodeSigningPolicies?: CodeSigningPolicies;
}
/**
 * <p>Details about a <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html">Code signing configuration</a>. </p>
 */
export interface CodeSigningConfig {
    /**
     * <p>Unique identifer for the Code signing configuration.</p>
     */
    CodeSigningConfigId: string | undefined;
    /**
     * <p>The Amazon Resource Name (ARN) of the Code signing configuration.</p>
     */
    CodeSigningConfigArn: string | undefined;
    /**
     * <p>Code signing configuration description.</p>
     */
    Description?: string;
    /**
     * <p>List of allowed publishers.</p>
     */
    AllowedPublishers: AllowedPublishers | undefined;
    /**
     * <p>The code signing policy controls the validation failure action for signature mismatch or expiry.</p>
     */
    CodeSigningPolicies: CodeSigningPolicies | undefined;
    /**
     * <p>The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD). </p>
     */
    LastModified: string | undefined;
}
export interface CreateCodeSigningConfigResponse {
    /**
     * <p>The code signing configuration.</p>
     */
    CodeSigningConfig: CodeSigningConfig | undefined;
}
/**
 * <p>A destination for events that failed processing.</p>
 */
export interface OnFailure {
    /**
     * <p>The Amazon Resource Name (ARN) of the destination resource.</p>
     */
    Destination?: string;
}
/**
 * <p>A destination for events that were processed successfully.</p>
 */
export interface OnSuccess {
    /**
     * <p>The Amazon Resource Name (ARN) of the destination resource.</p>
     */
    Destination?: string;
}
/**
 * <p>A configuration object that specifies the destination of an event after Lambda processes it.</p>
 */
export interface DestinationConfig {
    /**
     * <p>The destination configuration for successful invocations.</p>
     */
    OnSuccess?: OnSuccess;
    /**
     * <p>The destination configuration for failed invocations.</p>
     */
    OnFailure?: OnFailure;
}
/**
 * <p>
 *       A structure within a <code>FilterCriteria</code> object that defines an event filtering pattern.
 *     </p>
 */
export interface Filter {
    /**
     * <p>
     *       A filter pattern. For more information on the syntax of a filter pattern, see
     *       <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-syntax">
     *         Filter rule syntax</a>.
     *     </p>
     */
    Pattern?: string;
}
/**
 * <p>
 *       An object that contains the filters for an event source.
 *     </p>
 */
export interface FilterCriteria {
    /**
     * <p>
     *       A list of filters.
     *     </p>
     */
    Filters?: Filter[];
}
export declare enum FunctionResponseType {
    ReportBatchItemFailures = "ReportBatchItemFailures"
}
export declare enum EndPointType {
    KAFKA_BOOTSTRAP_SERVERS = "KAFKA_BOOTSTRAP_SERVERS"
}
/**
 * <p>The self-managed Apache Kafka cluster for your event source.</p>
 */
export interface SelfManagedEventSource {
    /**
     * <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>
     */
    Endpoints?: Record<string, string[]>;
}
/**
 * <p>Specific configuration settings for a self-managed Apache Kafka event source.</p>
 */
export interface SelfManagedKafkaEventSourceConfig {
    /**
     * <p>The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources.
     *   After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see
     *   <a>services-msk-consumer-group-id</a>.</p>
     */
    ConsumerGroupId?: string;
}
export declare enum SourceAccessType {
    BASIC_AUTH = "BASIC_AUTH",
    CLIENT_CERTIFICATE_TLS_AUTH = "CLIENT_CERTIFICATE_TLS_AUTH",
    SASL_SCRAM_256_AUTH = "SASL_SCRAM_256_AUTH",
    SASL_SCRAM_512_AUTH = "SASL_SCRAM_512_AUTH",
    SERVER_ROOT_CA_CERTIFICATE = "SERVER_ROOT_CA_CERTIFICATE",
    VIRTUAL_HOST = "VIRTUAL_HOST",
    VPC_SECURITY_GROUP = "VPC_SECURITY_GROUP",
    VPC_SUBNET = "VPC_SUBNET"
}
/**
 * <p>To secure and define access to your event source, you can specify the authentication protocol, VPC components, or virtual host.</p>
 */
export interface SourceAccessConfiguration {
    /**
     * <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.
     *   This property cannot be specified in an UpdateEventSourceMapping API call.</p>
     *             </li>
     *             <li>
     *                <p>
     *                   <code>CLIENT_CERTIFICATE_TLS_AUTH</code> - (Amazon MSK, self-managed Apache Kafka) The Secrets Manager ARN of your secret key containing the certificate chain (X.509 PEM),
     *   private key (PKCS#8 PEM), and private key password (optional) used for mutual TLS authentication of your MSK/Apache Kafka brokers.</p>
     *             </li>
     *             <li>
     *                <p>
     *                   <code>SERVER_ROOT_CA_CERTIFICATE</code> - (Self-managed Apache Kafka) The Secrets Manager ARN of your secret key containing the root CA certificate (X.509 PEM) used for TLS encryption of your Apache Kafka brokers.
     *   </p>
     *             </li>
     *          </ul>
     */
    Type?: SourceAccessType | string;
    /**
     * <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>
     */
    URI?: string;
}
export declare enum EventSourcePosition {
    AT_TIMESTAMP = "AT_TIMESTAMP",
    LATEST = "LATEST",
    TRIM_HORIZON = "TRIM_HORIZON"
}
export interface CreateEventSourceMappingRequest {
    /**
     * <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>
     */
    EventSourceArn?: string;
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>When true, the event source mapping is active. When false, Lambda pauses polling and invocation.</p>
     *          <p>Default: True</p>
     */
    Enabled?: boolean;
    /**
     * <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 10,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>
     *             <li>
     *                <p>
     *                   <b>Amazon MQ (ActiveMQ and RabbitMQ)</b> - Default 100. Max 10,000.</p>
     *             </li>
     *          </ul>
     */
    BatchSize?: number;
    /**
     * <p>(Streams and Amazon SQS) An object that defines the filter criteria that
     *     determine whether Lambda should process an event. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html">Lambda event filtering</a>.</p>
     */
    FilterCriteria?: FilterCriteria;
    /**
     * <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>
     */
    MaximumBatchingWindowInSeconds?: number;
    /**
     * <p>(Streams only) The number of batches to process from each shard concurrently.</p>
     */
    ParallelizationFactor?: number;
    /**
     * <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 supported only for
     *       Amazon Kinesis streams.</p>
     */
    StartingPosition?: EventSourcePosition | string;
    /**
     * <p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start
     *       reading.</p>
     */
    StartingPositionTimestamp?: Date;
    /**
     * <p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>
     */
    DestinationConfig?: DestinationConfig;
    /**
     * <p>(Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>
     */
    MaximumRecordAgeInSeconds?: number;
    /**
     * <p>(Streams only) If the function returns an error, split the batch in two and retry.</p>
     */
    BisectBatchOnFunctionError?: boolean;
    /**
     * <p>(Streams only) 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>
     */
    MaximumRetryAttempts?: number;
    /**
     * <p>(Streams only) The duration in seconds of a processing window. The range is between 1 second and 900 seconds.</p>
     */
    TumblingWindowInSeconds?: number;
    /**
     * <p>The name of the Kafka topic.</p>
     */
    Topics?: string[];
    /**
     * <p> (MQ) The name of the Amazon MQ broker destination queue to consume. </p>
     */
    Queues?: string[];
    /**
     * <p>An array of authentication protocols or VPC components required to secure your event source.</p>
     */
    SourceAccessConfigurations?: SourceAccessConfiguration[];
    /**
     * <p>The self-managed Apache Kafka cluster to receive records from.</p>
     */
    SelfManagedEventSource?: SelfManagedEventSource;
    /**
     * <p>(Streams and Amazon SQS) A list of current response type enums applied to the event source mapping.</p>
     */
    FunctionResponseTypes?: (FunctionResponseType | string)[];
    /**
     * <p>Specific configuration settings for an Amazon Managed Streaming for Apache Kafka (Amazon MSK) event source.</p>
     */
    AmazonManagedKafkaEventSourceConfig?: AmazonManagedKafkaEventSourceConfig;
    /**
     * <p>Specific configuration settings for a self-managed Apache Kafka event source.</p>
     */
    SelfManagedKafkaEventSourceConfig?: SelfManagedKafkaEventSourceConfig;
}
/**
 * <p>A mapping between an Amazon Web Services resource and a Lambda function. For details, see <a>CreateEventSourceMapping</a>.</p>
 */
export interface EventSourceMappingConfiguration {
    /**
     * <p>The identifier of the event source mapping.</p>
     */
    UUID?: string;
    /**
     * <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>
     */
    StartingPosition?: EventSourcePosition | string;
    /**
     * <p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start
     *       reading.</p>
     */
    StartingPositionTimestamp?: Date;
    /**
     * <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>
     */
    BatchSize?: number;
    /**
     * <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>
     */
    MaximumBatchingWindowInSeconds?: number;
    /**
     * <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
     */
    ParallelizationFactor?: number;
    /**
     * <p>The Amazon Resource Name (ARN) of the event source.</p>
     */
    EventSourceArn?: string;
    /**
     * <p>(Streams and Amazon SQS) An object that defines the filter criteria that
     *     determine whether Lambda should process an event. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html">Lambda event filtering</a>.</p>
     */
    FilterCriteria?: FilterCriteria;
    /**
     * <p>The ARN of the Lambda function.</p>
     */
    FunctionArn?: string;
    /**
     * <p>The date that the event source mapping was last updated or that its state changed.</p>
     */
    LastModified?: Date;
    /**
     * <p>The result of the last Lambda invocation of your function.</p>
     */
    LastProcessingResult?: string;
    /**
     * <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>
     */
    State?: string;
    /**
     * <p>Indicates whether a user or Lambda made the last change to the event source mapping.</p>
     */
    StateTransitionReason?: string;
    /**
     * <p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>
     */
    DestinationConfig?: DestinationConfig;
    /**
     * <p>The name of the Kafka topic.</p>
     */
    Topics?: string[];
    /**
     * <p> (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.</p>
     */
    Queues?: string[];
    /**
     * <p>An array of the authentication protocol, VPC components, or virtual host to secure and define your event source.</p>
     */
    SourceAccessConfigurations?: SourceAccessConfiguration[];
    /**
     * <p>The self-managed Apache Kafka cluster for your event source.</p>
     */
    SelfManagedEventSource?: SelfManagedEventSource;
    /**
     * <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>
     */
    MaximumRecordAgeInSeconds?: number;
    /**
     * <p>(Streams only) If the function returns an error, split the batch in two and retry. The default value is false.</p>
     */
    BisectBatchOnFunctionError?: boolean;
    /**
     * <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>
     */
    MaximumRetryAttempts?: number;
    /**
     * <p>(Streams only) The duration in seconds of a processing window. The range is 1–900 seconds.</p>
     */
    TumblingWindowInSeconds?: number;
    /**
     * <p>(Streams and Amazon SQS) A list of current response type enums applied to the event source mapping.</p>
     */
    FunctionResponseTypes?: (FunctionResponseType | string)[];
    /**
     * <p>Specific configuration settings for an Amazon Managed Streaming for Apache Kafka (Amazon MSK) event source.</p>
     */
    AmazonManagedKafkaEventSourceConfig?: AmazonManagedKafkaEventSourceConfig;
    /**
     * <p>Specific configuration settings for a self-managed Apache Kafka event source.</p>
     */
    SelfManagedKafkaEventSourceConfig?: SelfManagedKafkaEventSourceConfig;
}
/**
 * <p>The specified code signing configuration does not exist.</p>
 */
export declare class CodeSigningConfigNotFoundException extends __BaseException {
    readonly name: "CodeSigningConfigNotFoundException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<CodeSigningConfigNotFoundException, __BaseException>);
}
/**
 * <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>
 */
export declare class CodeStorageExceededException extends __BaseException {
    readonly name: "CodeStorageExceededException";
    readonly $fault: "client";
    /**
     * <p>The exception type.</p>
     */
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<CodeStorageExceededException, __BaseException>);
}
/**
 * <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>
 */
export declare class CodeVerificationFailedException extends __BaseException {
    readonly name: "CodeVerificationFailedException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<CodeVerificationFailedException, __BaseException>);
}
/**
 * <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>
 */
export interface FunctionCode {
    /**
     * <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>
     */
    ZipFile?: Uint8Array;
    /**
     * <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>
     */
    S3Bucket?: string;
    /**
     * <p>The Amazon S3 key of the deployment package.</p>
     */
    S3Key?: string;
    /**
     * <p>For versioned objects, the version of the deployment package object to use.</p>
     */
    S3ObjectVersion?: string;
    /**
     * <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>
     */
    ImageUri?: string;
}
/**
 * <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>
 */
export interface DeadLetterConfig {
    /**
     * <p>The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.</p>
     */
    TargetArn?: string;
}
/**
 * <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>
 */
export interface Environment {
    /**
     * <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>
     */
    Variables?: Record<string, string>;
}
/**
 * <p>The size of the function’s /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10240 MB.</p>
 */
export interface EphemeralStorage {
    /**
     * <p>The size of the function’s /tmp directory.</p>
     */
    Size: number | undefined;
}
/**
 * <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>
 */
export interface FileSystemConfig {
    /**
     * <p>The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.</p>
     */
    Arn: string | undefined;
    /**
     * <p>The path where the function can access the file system, starting with <code>/mnt/</code>.</p>
     */
    LocalMountPath: string | undefined;
}
/**
 * <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>
 */
export interface ImageConfig {
    /**
     * <p>Specifies the entry point to their application, which is typically the location of the runtime
     *       executable.</p>
     */
    EntryPoint?: string[];
    /**
     * <p>Specifies parameters that you want to pass in with ENTRYPOINT. </p>
     */
    Command?: string[];
    /**
     * <p>Specifies the working directory.</p>
     */
    WorkingDirectory?: string;
}
export declare enum PackageType {
    Image = "Image",
    Zip = "Zip"
}
export declare enum Runtime {
    dotnet6 = "dotnet6",
    dotnetcore10 = "dotnetcore1.0",
    dotnetcore20 = "dotnetcore2.0",
    dotnetcore21 = "dotnetcore2.1",
    dotnetcore31 = "dotnetcore3.1",
    go1x = "go1.x",
    java11 = "java11",
    java8 = "java8",
    java8al2 = "java8.al2",
    nodejs = "nodejs",
    nodejs10x = "nodejs10.x",
    nodejs12x = "nodejs12.x",
    nodejs14x = "nodejs14.x",
    nodejs16x = "nodejs16.x",
    nodejs43 = "nodejs4.3",
    nodejs43edge = "nodejs4.3-edge",
    nodejs610 = "nodejs6.10",
    nodejs810 = "nodejs8.10",
    provided = "provided",
    providedal2 = "provided.al2",
    python27 = "python2.7",
    python36 = "python3.6",
    python37 = "python3.7",
    python38 = "python3.8",
    python39 = "python3.9",
    ruby25 = "ruby2.5",
    ruby27 = "ruby2.7"
}
export declare enum TracingMode {
    Active = "Active",
    PassThrough = "PassThrough"
}
/**
 * <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>
 */
export interface TracingConfig {
    /**
     * <p>The tracing mode.</p>
     */
    Mode?: TracingMode | string;
}
/**
 * <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>
 */
export interface VpcConfig {
    /**
     * <p>A list of VPC subnet IDs.</p>
     */
    SubnetIds?: string[];
    /**
     * <p>A list of VPC security groups IDs.</p>
     */
    SecurityGroupIds?: string[];
}
export interface CreateFunctionRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime</a>. Runtime is required if the deployment package is a .zip file archive.
     *         </p>
     */
    Runtime?: Runtime | string;
    /**
     * <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
     */
    Role: string | undefined;
    /**
     * <p>The name of the method within your code that Lambda calls to execute your function.
     * Handler is required if the deployment package is a .zip file archive. 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>
     */
    Handler?: string;
    /**
     * <p>The code for the function.</p>
     */
    Code: FunctionCode | undefined;
    /**
     * <p>A description of the function.</p>
     */
    Description?: string;
    /**
     * <p>The amount of time (in seconds) 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>
     */
    Timeout?: number;
    /**
     * <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>
     */
    MemorySize?: number;
    /**
     * <p>Set to true to publish the first version of the function during creation.</p>
     */
    Publish?: boolean;
    /**
     * <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>
     */
    VpcConfig?: VpcConfig;
    /**
     * <p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for ZIP archive.</p>
     */
    PackageType?: PackageType | string;
    /**
     * <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>
     */
    DeadLetterConfig?: DeadLetterConfig;
    /**
     * <p>Environment variables that are accessible from function code during execution.</p>
     */
    Environment?: Environment;
    /**
     * <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>
     */
    KMSKeyArn?: string;
    /**
     * <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>
     */
    TracingConfig?: TracingConfig;
    /**
     * <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to apply to the
     *       function.</p>
     */
    Tags?: Record<string, string>;
    /**
     * <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>
     */
    Layers?: string[];
    /**
     * <p>Connection settings for an Amazon EFS file system.</p>
     */
    FileSystemConfigs?: FileSystemConfig[];
    /**
     * <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>
     */
    ImageConfig?: ImageConfig;
    /**
     * <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>
     */
    CodeSigningConfigArn?: string;
    /**
     * <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64).
     *      The default value is <code>x86_64</code>.</p>
     */
    Architectures?: (Architecture | string)[];
    /**
     * <p>The size of the function’s /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10240 MB.</p>
     */
    EphemeralStorage?: EphemeralStorage;
}
/**
 * <p>Error messages for environment variables that couldn't be applied.</p>
 */
export interface EnvironmentError {
    /**
     * <p>The error code.</p>
     */
    ErrorCode?: string;
    /**
     * <p>The error message.</p>
     */
    Message?: string;
}
/**
 * <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>
 */
export interface EnvironmentResponse {
    /**
     * <p>Environment variable key-value pairs.</p>
     */
    Variables?: Record<string, string>;
    /**
     * <p>Error messages for environment variables that couldn't be applied.</p>
     */
    Error?: EnvironmentError;
}
/**
 * <p>Error response to GetFunctionConfiguration.</p>
 */
export interface ImageConfigError {
    /**
     * <p>Error code.</p>
     */
    ErrorCode?: string;
    /**
     * <p>Error message.</p>
     */
    Message?: string;
}
/**
 * <p>Response to GetFunctionConfiguration request.</p>
 */
export interface ImageConfigResponse {
    /**
     * <p>Configuration values that override the container image Dockerfile.</p>
     */
    ImageConfig?: ImageConfig;
    /**
     * <p>Error response to GetFunctionConfiguration.</p>
     */
    Error?: ImageConfigError;
}
export declare enum LastUpdateStatus {
    Failed = "Failed",
    InProgress = "InProgress",
    Successful = "Successful"
}
export declare enum LastUpdateStatusReasonCode {
    EniLimitExceeded = "EniLimitExceeded",
    ImageAccessDenied = "ImageAccessDenied",
    ImageDeleted = "ImageDeleted",
    InsufficientRolePermissions = "InsufficientRolePermissions",
    InternalError = "InternalError",
    InvalidConfiguration = "InvalidConfiguration",
    InvalidImage = "InvalidImage",
    InvalidSecurityGroup = "InvalidSecurityGroup",
    InvalidSubnet = "InvalidSubnet",
    SubnetOutOfIPAddresses = "SubnetOutOfIPAddresses"
}
/**
 * <p>An <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
 *         layer</a>.</p>
 */
export interface Layer {
    /**
     * <p>The Amazon Resource Name (ARN) of the function layer.</p>
     */
    Arn?: string;
    /**
     * <p>The size of the layer archive in bytes.</p>
     */
    CodeSize?: number;
    /**
     * <p>The Amazon Resource Name (ARN) for a signing profile version.</p>
     */
    SigningProfileVersionArn?: string;
    /**
     * <p>The Amazon Resource Name (ARN)  of a signing job.</p>
     */
    SigningJobArn?: string;
}
export declare enum State {
    Active = "Active",
    Failed = "Failed",
    Inactive = "Inactive",
    Pending = "Pending"
}
export declare enum StateReasonCode {
    Creating = "Creating",
    EniLimitExceeded = "EniLimitExceeded",
    Idle = "Idle",
    ImageAccessDenied = "ImageAccessDenied",
    ImageDeleted = "ImageDeleted",
    InsufficientRolePermissions = "InsufficientRolePermissions",
    InternalError = "InternalError",
    InvalidConfiguration = "InvalidConfiguration",
    InvalidImage = "InvalidImage",
    InvalidSecurityGroup = "InvalidSecurityGroup",
    InvalidSubnet = "InvalidSubnet",
    Restoring = "Restoring",
    SubnetOutOfIPAddresses = "SubnetOutOfIPAddresses"
}
/**
 * <p>The function's X-Ray tracing configuration.</p>
 */
export interface TracingConfigResponse {
    /**
     * <p>The tracing mode.</p>
     */
    Mode?: TracingMode | string;
}
/**
 * <p>The VPC security groups and subnets that are attached to a Lambda function.</p>
 */
export interface VpcConfigResponse {
    /**
     * <p>A list of VPC subnet IDs.</p>
     */
    SubnetIds?: string[];
    /**
     * <p>A list of VPC security groups IDs.</p>
     */
    SecurityGroupIds?: string[];
    /**
     * <p>The ID of the VPC.</p>
     */
    VpcId?: string;
}
/**
 * <p>Details about a function's configuration.</p>
 */
export interface FunctionConfiguration {
    /**
     * <p>The name of the function.</p>
     */
    FunctionName?: string;
    /**
     * <p>The function's Amazon Resource Name (ARN).</p>
     */
    FunctionArn?: string;
    /**
     * <p>The runtime environment for the Lambda function.</p>
     */
    Runtime?: Runtime | string;
    /**
     * <p>The function's execution role.</p>
     */
    Role?: string;
    /**
     * <p>The function that Lambda calls to begin executing your function.</p>
     */
    Handler?: string;
    /**
     * <p>The size of the function's deployment package, in bytes.</p>
     */
    CodeSize?: number;
    /**
     * <p>The function's description.</p>
     */
    Description?: string;
    /**
     * <p>The amount of time in seconds that Lambda allows a function to run before stopping it.</p>
     */
    Timeout?: number;
    /**
     * <p>The amount of memory available to the function at runtime. </p>
     */
    MemorySize?: number;
    /**
     * <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>
     */
    LastModified?: string;
    /**
     * <p>The SHA256 hash of the function's deployment package.</p>
     */
    CodeSha256?: string;
    /**
     * <p>The version of the Lambda function.</p>
     */
    Version?: string;
    /**
     * <p>The function's networking configuration.</p>
     */
    VpcConfig?: VpcConfigResponse;
    /**
     * <p>The function's dead letter queue.</p>
     */
    DeadLetterConfig?: DeadLetterConfig;
    /**
     * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html">environment variables</a>.</p>
     */
    Environment?: EnvironmentResponse;
    /**
     * <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 key.</p>
     */
    KMSKeyArn?: string;
    /**
     * <p>The function's X-Ray tracing configuration.</p>
     */
    TracingConfig?: TracingConfigResponse;
    /**
     * <p>For Lambda@Edge functions, the ARN of the main function.</p>
     */
    MasterArn?: string;
    /**
     * <p>The latest updated revision of the function or alias.</p>
     */
    RevisionId?: string;
    /**
     * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">
     *       layers</a>.</p>
     */
    Layers?: Layer[];
    /**
     * <p>The current state of the function. When the state is <code>Inactive</code>, you can reactivate the function by
     *       invoking it.</p>
     */
    State?: State | string;
    /**
     * <p>The reason for the function's current state.</p>
     */
    StateReason?: string;
    /**
     * <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>
     */
    StateReasonCode?: StateReasonCode | string;
    /**
     * <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>
     */
    LastUpdateStatus?: LastUpdateStatus | string;
    /**
     * <p>The reason for the last update that was performed on the function.</p>
     */
    LastUpdateStatusReason?: string;
    /**
     * <p>The reason code for the last update that was performed on the function.</p>
     */
    LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | string;
    /**
     * <p>Connection settings for an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
     */
    FileSystemConfigs?: FileSystemConfig[];
    /**
     * <p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for .zip file archive.</p>
     */
    PackageType?: PackageType | string;
    /**
     * <p>The function's image configuration values.</p>
     */
    ImageConfigResponse?: ImageConfigResponse;
    /**
     * <p>The ARN of the signing profile version.</p>
     */
    SigningProfileVersionArn?: string;
    /**
     * <p>The ARN of the signing job.</p>
     */
    SigningJobArn?: string;
    /**
     * <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>
     */
    Architectures?: (Architecture | string)[];
    /**
     * <p>The size of the function’s /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10240 MB.</p>
     */
    EphemeralStorage?: EphemeralStorage;
}
/**
 * <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>
 */
export declare class InvalidCodeSignatureException extends __BaseException {
    readonly name: "InvalidCodeSignatureException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>);
}
/**
 * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing
 *         (CORS)</a> settings for your Lambda function URL. Use CORS to grant access to your function URL
 *       from any origin. You can also use CORS to control access for specific HTTP headers and methods in requests to your
 *       function URL.</p>
 */
export interface Cors {
    /**
     * <p>Whether to allow cookies or other credentials in requests to your function URL. The default is
     *         <code>false</code>.</p>
     */
    AllowCredentials?: boolean;
    /**
     * <p>The HTTP headers that origins can include in requests to your function URL. For example: <code>Date</code>, <code>Keep-Alive</code>,
     *       <code>X-Custom-Header</code>.</p>
     */
    AllowHeaders?: string[];
    /**
     * <p>The HTTP methods that are allowed when calling your function URL. For example: <code>GET</code>, <code>POST</code>, <code>DELETE</code>,
     *       or the wildcard character (<code>*</code>).</p>
     */
    AllowMethods?: string[];
    /**
     * <p>The origins that can access your function URL. You can list any number of specific origins, separated by a comma. For example:
     *       <code>https://www.example.com</code>, <code>http://localhost:60905</code>.</p>
     *          <p>Alternatively, you can grant access to all origins using the wildcard character (<code>*</code>).</p>
     */
    AllowOrigins?: string[];
    /**
     * <p>The HTTP headers in your function response that you want to expose to origins that call your function URL. For example:
     *       <code>Date</code>, <code>Keep-Alive</code>, <code>X-Custom-Header</code>.</p>
     */
    ExposeHeaders?: string[];
    /**
     * <p>The maximum amount of time, in seconds, that web browsers can cache results of a preflight request. By
     *       default, this is set to <code>0</code>, which means that the browser doesn't cache results.</p>
     */
    MaxAge?: number;
}
export interface CreateFunctionUrlConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The alias name.</p>
     */
    Qualifier?: string;
    /**
     * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
     *   <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
     *   see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
     */
    AuthType: FunctionUrlAuthType | string | undefined;
    /**
     * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
     *   for your function URL.</p>
     */
    Cors?: Cors;
}
export interface CreateFunctionUrlConfigResponse {
    /**
     * <p>The HTTP URL endpoint for your function.</p>
     */
    FunctionUrl: string | undefined;
    /**
     * <p>The Amazon Resource Name (ARN) of your function.</p>
     */
    FunctionArn: string | undefined;
    /**
     * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
     *   <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
     *   see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
     */
    AuthType: FunctionUrlAuthType | string | undefined;
    /**
     * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
     *   for your function URL.</p>
     */
    Cors?: Cors;
    /**
     * <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
     */
    CreationTime: string | undefined;
}
export interface DeleteAliasRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The name of the alias.</p>
     */
    Name: string | undefined;
}
export interface DeleteCodeSigningConfigRequest {
    /**
     * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
     */
    CodeSigningConfigArn: string | undefined;
}
export interface DeleteCodeSigningConfigResponse {
}
export interface DeleteEventSourceMappingRequest {
    /**
     * <p>The identifier of the event source mapping.</p>
     */
    UUID: string | undefined;
}
/**
 * <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>
 */
export declare class ResourceInUseException extends __BaseException {
    readonly name: "ResourceInUseException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
}
export interface DeleteFunctionRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify a version to delete. You can't delete a version that's referenced by an alias.</p>
     */
    Qualifier?: string;
}
export interface DeleteFunctionCodeSigningConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
}
export interface DeleteFunctionConcurrencyRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
}
export interface DeleteFunctionEventInvokeConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>A version number or alias name.</p>
     */
    Qualifier?: string;
}
export interface DeleteFunctionUrlConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The alias name.</p>
     */
    Qualifier?: string;
}
export interface DeleteLayerVersionRequest {
    /**
     * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
     */
    LayerName: string | undefined;
    /**
     * <p>The version number.</p>
     */
    VersionNumber: number | undefined;
}
export interface DeleteProvisionedConcurrencyConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The version number or alias name.</p>
     */
    Qualifier: string | undefined;
}
export interface GetAccountSettingsRequest {
}
export interface GetAccountSettingsResponse {
    /**
     * <p>Limits that are related to concurrency and code storage.</p>
     */
    AccountLimit?: AccountLimit;
    /**
     * <p>The number of functions and amount of storage in use.</p>
     */
    AccountUsage?: AccountUsage;
}
export interface GetAliasRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The name of the alias.</p>
     */
    Name: string | undefined;
}
export interface GetCodeSigningConfigRequest {
    /**
     * <p>The The Amazon Resource Name (ARN) of the code signing configuration. </p>
     */
    CodeSigningConfigArn: string | undefined;
}
export interface GetCodeSigningConfigResponse {
    /**
     * <p>The code signing configuration</p>
     */
    CodeSigningConfig: CodeSigningConfig | undefined;
}
export interface GetEventSourceMappingRequest {
    /**
     * <p>The identifier of the event source mapping.</p>
     */
    UUID: string | undefined;
}
export interface GetFunctionRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify a version or alias to get details about a published version of the function.</p>
     */
    Qualifier?: string;
}
/**
 * <p>Details about a function's deployment package.</p>
 */
export interface FunctionCodeLocation {
    /**
     * <p>The service that's hosting the file.</p>
     */
    RepositoryType?: string;
    /**
     * <p>A presigned URL that you can use to download the deployment package.</p>
     */
    Location?: string;
    /**
     * <p>URI of a container image in the Amazon ECR registry.</p>
     */
    ImageUri?: string;
    /**
     * <p>The resolved URI for the image.</p>
     */
    ResolvedImageUri?: string;
}
export interface Concurrency {
    /**
     * <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>
     */
    ReservedConcurrentExecutions?: number;
}
export interface GetFunctionResponse {
    /**
     * <p>The configuration of the function or version.</p>
     */
    Configuration?: FunctionConfiguration;
    /**
     * <p>The deployment package of the function or version.</p>
     */
    Code?: FunctionCodeLocation;
    /**
     * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>.</p>
     */
    Tags?: Record<string, string>;
    /**
     * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html">reserved
     *         concurrency</a>.</p>
     */
    Concurrency?: Concurrency;
}
export interface GetFunctionCodeSigningConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
}
export interface GetFunctionCodeSigningConfigResponse {
    /**
     * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
     */
    CodeSigningConfigArn: string | undefined;
    /**
     * <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>
     */
    FunctionName: string | undefined;
}
export interface GetFunctionConcurrencyRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
}
export interface GetFunctionConcurrencyResponse {
    /**
     * <p>The number of simultaneous executions that are reserved for the function.</p>
     */
    ReservedConcurrentExecutions?: number;
}
export interface GetFunctionConfigurationRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify a version or alias to get details about a published version of the function.</p>
     */
    Qualifier?: string;
}
export interface FunctionEventInvokeConfig {
    /**
     * <p>The date and time that the configuration was last updated.</p>
     */
    LastModified?: Date;
    /**
     * <p>The Amazon Resource Name (ARN) of the function.</p>
     */
    FunctionArn?: string;
    /**
     * <p>The maximum number of times to retry when the function returns an error.</p>
     */
    MaximumRetryAttempts?: number;
    /**
     * <p>The maximum age of a request that Lambda sends to a function for processing.</p>
     */
    MaximumEventAgeInSeconds?: number;
    /**
     * <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>
     */
    DestinationConfig?: DestinationConfig;
}
export interface GetFunctionEventInvokeConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>A version number or alias name.</p>
     */
    Qualifier?: string;
}
export interface GetFunctionUrlConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The alias name.</p>
     */
    Qualifier?: string;
}
export interface GetFunctionUrlConfigResponse {
    /**
     * <p>The HTTP URL endpoint for your function.</p>
     */
    FunctionUrl: string | undefined;
    /**
     * <p>The Amazon Resource Name (ARN) of your function.</p>
     */
    FunctionArn: string | undefined;
    /**
     * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
     *   <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
     *   see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
     */
    AuthType: FunctionUrlAuthType | string | undefined;
    /**
     * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
     *   for your function URL.</p>
     */
    Cors?: Cors;
    /**
     * <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
     */
    CreationTime: string | undefined;
    /**
     * <p>When the function URL configuration was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
     */
    LastModifiedTime: string | undefined;
}
export interface GetLayerVersionRequest {
    /**
     * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
     */
    LayerName: string | undefined;
    /**
     * <p>The version number.</p>
     */
    VersionNumber: number | undefined;
}
/**
 * <p>Details about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
 *         layer</a>.</p>
 */
export interface LayerVersionContentOutput {
    /**
     * <p>A link to the layer archive in Amazon S3 that is valid for 10 minutes.</p>
     */
    Location?: string;
    /**
     * <p>The SHA-256 hash of the layer archive.</p>
     */
    CodeSha256?: string;
    /**
     * <p>The size of the layer archive in bytes.</p>
     */
    CodeSize?: number;
    /**
     * <p>The Amazon Resource Name (ARN) for a signing profile version.</p>
     */
    SigningProfileVersionArn?: string;
    /**
     * <p>The Amazon Resource Name (ARN)  of a signing job.</p>
     */
    SigningJobArn?: string;
}
export interface GetLayerVersionResponse {
    /**
     * <p>Details about the layer version.</p>
     */
    Content?: LayerVersionContentOutput;
    /**
     * <p>The ARN of the layer.</p>
     */
    LayerArn?: string;
    /**
     * <p>The ARN of the layer version.</p>
     */
    LayerVersionArn?: string;
    /**
     * <p>The description of the version.</p>
     */
    Description?: string;
    /**
     * <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>
     */
    CreatedDate?: string;
    /**
     * <p>The version number.</p>
     */
    Version?: number;
    /**
     * <p>The layer's compatible runtimes.</p>
     */
    CompatibleRuntimes?: (Runtime | string)[];
    /**
     * <p>The layer's software license.</p>
     */
    LicenseInfo?: string;
    /**
     * <p>A list of compatible
     * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
     */
    CompatibleArchitectures?: (Architecture | string)[];
}
export interface GetLayerVersionByArnRequest {
    /**
     * <p>The ARN of the layer version.</p>
     */
    Arn: string | undefined;
}
export interface GetLayerVersionPolicyRequest {
    /**
     * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
     */
    LayerName: string | undefined;
    /**
     * <p>The version number.</p>
     */
    VersionNumber: number | undefined;
}
export interface GetLayerVersionPolicyResponse {
    /**
     * <p>The policy document.</p>
     */
    Policy?: string;
    /**
     * <p>A unique identifier for the current revision of the policy.</p>
     */
    RevisionId?: string;
}
export interface GetPolicyRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify a version or alias to get the policy for that resource.</p>
     */
    Qualifier?: string;
}
export interface GetPolicyResponse {
    /**
     * <p>The resource-based policy.</p>
     */
    Policy?: string;
    /**
     * <p>A unique identifier for the current revision of the policy.</p>
     */
    RevisionId?: string;
}
export interface GetProvisionedConcurrencyConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The version number or alias name.</p>
     */
    Qualifier: string | undefined;
}
export declare enum ProvisionedConcurrencyStatusEnum {
    FAILED = "FAILED",
    IN_PROGRESS = "IN_PROGRESS",
    READY = "READY"
}
export interface GetProvisionedConcurrencyConfigResponse {
    /**
     * <p>The amount of provisioned concurrency requested.</p>
     */
    RequestedProvisionedConcurrentExecutions?: number;
    /**
     * <p>The amount of provisioned concurrency available.</p>
     */
    AvailableProvisionedConcurrentExecutions?: number;
    /**
     * <p>The amount of provisioned concurrency allocated.</p>
     */
    AllocatedProvisionedConcurrentExecutions?: number;
    /**
     * <p>The status of the allocation process.</p>
     */
    Status?: ProvisionedConcurrencyStatusEnum | string;
    /**
     * <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
     */
    StatusReason?: string;
    /**
     * <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>
     */
    LastModified?: string;
}
/**
 * <p>The specified configuration does not exist.</p>
 */
export declare class ProvisionedConcurrencyConfigNotFoundException extends __BaseException {
    readonly name: "ProvisionedConcurrencyConfigNotFoundException";
    readonly $fault: "client";
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<ProvisionedConcurrencyConfigNotFoundException, __BaseException>);
}
/**
 * <p>Need additional permissions to configure VPC settings.</p>
 */
export declare class EC2AccessDeniedException extends __BaseException {
    readonly name: "EC2AccessDeniedException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<EC2AccessDeniedException, __BaseException>);
}
/**
 * <p>Lambda was throttled by Amazon EC2 during Lambda function initialization using the execution role provided
 *       for the Lambda function.</p>
 */
export declare class EC2ThrottledException extends __BaseException {
    readonly name: "EC2ThrottledException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<EC2ThrottledException, __BaseException>);
}
/**
 * <p>Lambda received an unexpected EC2 client exception while setting up for the Lambda function.</p>
 */
export declare class EC2UnexpectedException extends __BaseException {
    readonly name: "EC2UnexpectedException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    EC2ErrorCode?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<EC2UnexpectedException, __BaseException>);
}
/**
 * <p>An error occurred when reading from or writing to a connected file system.</p>
 */
export declare class EFSIOException extends __BaseException {
    readonly name: "EFSIOException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<EFSIOException, __BaseException>);
}
/**
 * <p>The function couldn't make a network connection to the configured file system.</p>
 */
export declare class EFSMountConnectivityException extends __BaseException {
    readonly name: "EFSMountConnectivityException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<EFSMountConnectivityException, __BaseException>);
}
/**
 * <p>The function couldn't mount the configured file system due to a permission or configuration issue.</p>
 */
export declare class EFSMountFailureException extends __BaseException {
    readonly name: "EFSMountFailureException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<EFSMountFailureException, __BaseException>);
}
/**
 * <p>The function was able to make a network connection to the configured file system, but the mount operation
 *       timed out.</p>
 */
export declare class EFSMountTimeoutException extends __BaseException {
    readonly name: "EFSMountTimeoutException";
    readonly $fault: "client";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<EFSMountTimeoutException, __BaseException>);
}
/**
 * <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>
 */
export declare class ENILimitReachedException extends __BaseException {
    readonly name: "ENILimitReachedException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<ENILimitReachedException, __BaseException>);
}
/**
 * <p>The request body could not be parsed as JSON.</p>
 */
export declare class InvalidRequestContentException extends __BaseException {
    readonly name: "InvalidRequestContentException";
    readonly $fault: "client";
    /**
     * <p>The exception type.</p>
     */
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<InvalidRequestContentException, __BaseException>);
}
/**
 * <p>The runtime or runtime version specified is not supported.</p>
 */
export declare class InvalidRuntimeException extends __BaseException {
    readonly name: "InvalidRuntimeException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<InvalidRuntimeException, __BaseException>);
}
/**
 * <p>The Security Group ID provided in the Lambda function VPC configuration is invalid.</p>
 */
export declare class InvalidSecurityGroupIDException extends __BaseException {
    readonly name: "InvalidSecurityGroupIDException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<InvalidSecurityGroupIDException, __BaseException>);
}
/**
 * <p>The Subnet ID provided in the Lambda function VPC configuration is invalid.</p>
 */
export declare class InvalidSubnetIDException extends __BaseException {
    readonly name: "InvalidSubnetIDException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<InvalidSubnetIDException, __BaseException>);
}
/**
 * <p>Lambda could not unzip the deployment package.</p>
 */
export declare class InvalidZipFileException extends __BaseException {
    readonly name: "InvalidZipFileException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<InvalidZipFileException, __BaseException>);
}
export declare enum InvocationType {
    DryRun = "DryRun",
    Event = "Event",
    RequestResponse = "RequestResponse"
}
export declare enum LogType {
    None = "None",
    Tail = "Tail"
}
export interface InvocationRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <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>
     */
    InvocationType?: InvocationType | string;
    /**
     * <p>Set to <code>Tail</code> to include the execution log in the response. Applies to synchronously invoked functions only.</p>
     */
    LogType?: LogType | string;
    /**
     * <p>Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context
     *       object.</p>
     */
    ClientContext?: string;
    /**
     * <p>The JSON that you want to provide to your Lambda function as input.</p>
     *          <p>You can enter the JSON directly. For example, <code>--payload '{ "key": "value" }'</code>.
     *       You can also specify a file path. For example, <code>--payload file://payload.json</code>.
     *     </p>
     */
    Payload?: Uint8Array;
    /**
     * <p>Specify a version or alias to invoke a published version of the function.</p>
     */
    Qualifier?: string;
}
export interface InvocationResponse {
    /**
     * <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>
     */
    StatusCode?: number;
    /**
     * <p>If present, indicates that an error occurred during function execution. Details about the error are included
     *       in the response payload.</p>
     */
    FunctionError?: string;
    /**
     * <p>The last 4 KB of the execution log, which is base64 encoded.</p>
     */
    LogResult?: string;
    /**
     * <p>The response from the function, or an error object.</p>
     */
    Payload?: Uint8Array;
    /**
     * <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>
     */
    ExecutedVersion?: string;
}
/**
 * <p>Lambda was unable to decrypt the environment variables because KMS access was denied. Check the Lambda
 *       function's KMS permissions.</p>
 */
export declare class KMSAccessDeniedException extends __BaseException {
    readonly name: "KMSAccessDeniedException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>);
}
/**
 * <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>
 */
export declare class KMSDisabledException extends __BaseException {
    readonly name: "KMSDisabledException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<KMSDisabledException, __BaseException>);
}
/**
 * <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>
 */
export declare class KMSInvalidStateException extends __BaseException {
    readonly name: "KMSInvalidStateException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>);
}
/**
 * <p>Lambda was unable to decrypt the environment variables because the KMS key was not found. Check the function's
 *       KMS key settings. </p>
 */
export declare class KMSNotFoundException extends __BaseException {
    readonly name: "KMSNotFoundException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>);
}
/**
 * <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>
 */
export declare class RequestTooLargeException extends __BaseException {
    readonly name: "RequestTooLargeException";
    readonly $fault: "client";
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<RequestTooLargeException, __BaseException>);
}
/**
 * <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to
 *       reestablish and try again.</p>
 */
export declare class ResourceNotReadyException extends __BaseException {
    readonly name: "ResourceNotReadyException";
    readonly $fault: "server";
    /**
     * <p>The exception type.</p>
     */
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
}
/**
 * <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>
 */
export declare class SubnetIPAddressLimitReachedException extends __BaseException {
    readonly name: "SubnetIPAddressLimitReachedException";
    readonly $fault: "server";
    Type?: string;
    Message?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<SubnetIPAddressLimitReachedException, __BaseException>);
}
/**
 * <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
 */
export declare class UnsupportedMediaTypeException extends __BaseException {
    readonly name: "UnsupportedMediaTypeException";
    readonly $fault: "client";
    Type?: string;
    /**
     * @internal
     */
    constructor(opts: __ExceptionOptionType<UnsupportedMediaTypeException, __BaseException>);
}
export interface InvokeAsyncRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The JSON that you want to provide to your Lambda function as input.</p>
     */
    InvokeArgs: Readable | ReadableStream | Blob | undefined;
}
/**
 * @deprecated
 *
 * <p>A success response (<code>202 Accepted</code>) indicates that the request is queued for invocation. </p>
 */
export interface InvokeAsyncResponse {
    /**
     * <p>The status code.</p>
     */
    Status?: number;
}
export interface ListAliasesRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify a function version to only list aliases that invoke that version.</p>
     */
    FunctionVersion?: string;
    /**
     * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
     */
    Marker?: string;
    /**
     * <p>Limit the number of aliases returned.</p>
     */
    MaxItems?: number;
}
export interface ListAliasesResponse {
    /**
     * <p>The pagination token that's included if more results are available.</p>
     */
    NextMarker?: string;
    /**
     * <p>A list of aliases.</p>
     */
    Aliases?: AliasConfiguration[];
}
export interface ListCodeSigningConfigsRequest {
    /**
     * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
     */
    Marker?: string;
    /**
     * <p>Maximum number of items to return.</p>
     */
    MaxItems?: number;
}
export interface ListCodeSigningConfigsResponse {
    /**
     * <p>The pagination token that's included if more results are available.</p>
     */
    NextMarker?: string;
    /**
     * <p>The code signing configurations</p>
     */
    CodeSigningConfigs?: CodeSigningConfig[];
}
export interface ListEventSourceMappingsRequest {
    /**
     * <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>
     */
    EventSourceArn?: string;
    /**
     * <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>
     */
    FunctionName?: string;
    /**
     * <p>A pagination token returned by a previous call.</p>
     */
    Marker?: string;
    /**
     * <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>
     */
    MaxItems?: number;
}
export interface ListEventSourceMappingsResponse {
    /**
     * <p>A pagination token that's returned when the response doesn't contain all event source mappings.</p>
     */
    NextMarker?: string;
    /**
     * <p>A list of event source mappings.</p>
     */
    EventSourceMappings?: EventSourceMappingConfiguration[];
}
export interface ListFunctionEventInvokeConfigsRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
     */
    Marker?: string;
    /**
     * <p>The maximum number of configurations to return.</p>
     */
    MaxItems?: number;
}
export interface ListFunctionEventInvokeConfigsResponse {
    /**
     * <p>A list of configurations.</p>
     */
    FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[];
    /**
     * <p>The pagination token that's included if more results are available.</p>
     */
    NextMarker?: string;
}
export declare enum FunctionVersion {
    ALL = "ALL"
}
export interface ListFunctionsRequest {
    /**
     * <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>
     */
    MasterRegion?: string;
    /**
     * <p>Set to <code>ALL</code> to include entries for all published versions of each function.</p>
     */
    FunctionVersion?: FunctionVersion | string;
    /**
     * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
     */
    Marker?: string;
    /**
     * <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>
     */
    MaxItems?: number;
}
/**
 * <p>A list of Lambda functions.</p>
 */
export interface ListFunctionsResponse {
    /**
     * <p>The pagination token that's included if more results are available.</p>
     */
    NextMarker?: string;
    /**
     * <p>A list of Lambda functions.</p>
     */
    Functions?: FunctionConfiguration[];
}
export interface ListFunctionsByCodeSigningConfigRequest {
    /**
     * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
     */
    CodeSigningConfigArn: string | undefined;
    /**
     * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
     */
    Marker?: string;
    /**
     * <p>Maximum number of items to return.</p>
     */
    MaxItems?: number;
}
export interface ListFunctionsByCodeSigningConfigResponse {
    /**
     * <p>The pagination token that's included if more results are available.</p>
     */
    NextMarker?: string;
    /**
     * <p>The function ARNs. </p>
     */
    FunctionArns?: string[];
}
export interface ListFunctionUrlConfigsRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
     */
    Marker?: string;
    /**
     * <p>The maximum number of function URLs to return in the response. Note that <code>ListFunctionUrlConfigs</code>
     *       returns a maximum of 50 items in each response, even if you set the number higher.</p>
     */
    MaxItems?: number;
}
/**
 * <p>Details about a Lambda function URL.</p>
 */
export interface FunctionUrlConfig {
    /**
     * <p>The HTTP URL endpoint for your function.</p>
     */
    FunctionUrl: string | undefined;
    /**
     * <p>The Amazon Resource Name (ARN) of your function.</p>
     */
    FunctionArn: string | undefined;
    /**
     * <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
     */
    CreationTime: string | undefined;
    /**
     * <p>When the function URL configuration was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
     */
    LastModifiedTime: string | undefined;
    /**
     * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
     *   for your function URL.</p>
     */
    Cors?: Cors;
    /**
     * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
     *   <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
     *   see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
     */
    AuthType: FunctionUrlAuthType | string | undefined;
}
export interface ListFunctionUrlConfigsResponse {
    /**
     * <p>A list of function URL configurations.</p>
     */
    FunctionUrlConfigs: FunctionUrlConfig[] | undefined;
    /**
     * <p>The pagination token that's included if more results are available.</p>
     */
    NextMarker?: string;
}
export interface ListLayersRequest {
    /**
     * <p>A runtime identifier. For example, <code>go1.x</code>.</p>
     */
    CompatibleRuntime?: Runtime | string;
    /**
     * <p>A pagination token returned by a previous call.</p>
     */
    Marker?: string;
    /**
     * <p>The maximum number of layers to return.</p>
     */
    MaxItems?: number;
    /**
     * <p>The compatible
     * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
     */
    CompatibleArchitecture?: Architecture | string;
}
/**
 * <p>Details about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
 *         layer</a>.</p>
 */
export interface LayerVersionsListItem {
    /**
     * <p>The ARN of the layer version.</p>
     */
    LayerVersionArn?: string;
    /**
     * <p>The version number.</p>
     */
    Version?: number;
    /**
     * <p>The description of the version.</p>
     */
    Description?: string;
    /**
     * <p>The date that the version was created, in ISO 8601 format. For example, <code>2018-11-27T15:10:45.123+0000</code>.</p>
     */
    CreatedDate?: string;
    /**
     * <p>The layer's compatible runtimes.</p>
     */
    CompatibleRuntimes?: (Runtime | string)[];
    /**
     * <p>The layer's open-source license.</p>
     */
    LicenseInfo?: string;
    /**
     * <p>A list of compatible
     *       <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
     */
    CompatibleArchitectures?: (Architecture | string)[];
}
/**
 * <p>Details about an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
 *         layer</a>.</p>
 */
export interface LayersListItem {
    /**
     * <p>The name of the layer.</p>
     */
    LayerName?: string;
    /**
     * <p>The Amazon Resource Name (ARN) of the function layer.</p>
     */
    LayerArn?: string;
    /**
     * <p>The newest version of the layer.</p>
     */
    LatestMatchingVersion?: LayerVersionsListItem;
}
export interface ListLayersResponse {
    /**
     * <p>A pagination token returned when the response doesn't contain all layers.</p>
     */
    NextMarker?: string;
    /**
     * <p>A list of function layers.</p>
     */
    Layers?: LayersListItem[];
}
export interface ListLayerVersionsRequest {
    /**
     * <p>A runtime identifier. For example, <code>go1.x</code>.</p>
     */
    CompatibleRuntime?: Runtime | string;
    /**
     * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
     */
    LayerName: string | undefined;
    /**
     * <p>A pagination token returned by a previous call.</p>
     */
    Marker?: string;
    /**
     * <p>The maximum number of versions to return.</p>
     */
    MaxItems?: number;
    /**
     * <p>The compatible
     * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
     */
    CompatibleArchitecture?: Architecture | string;
}
export interface ListLayerVersionsResponse {
    /**
     * <p>A pagination token returned when the response doesn't contain all versions.</p>
     */
    NextMarker?: string;
    /**
     * <p>A list of versions.</p>
     */
    LayerVersions?: LayerVersionsListItem[];
}
export interface ListProvisionedConcurrencyConfigsRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
     */
    Marker?: string;
    /**
     * <p>Specify a number to limit the number of configurations returned.</p>
     */
    MaxItems?: number;
}
/**
 * <p>Details about the provisioned concurrency configuration for a function alias or version.</p>
 */
export interface ProvisionedConcurrencyConfigListItem {
    /**
     * <p>The Amazon Resource Name (ARN) of the alias or version.</p>
     */
    FunctionArn?: string;
    /**
     * <p>The amount of provisioned concurrency requested.</p>
     */
    RequestedProvisionedConcurrentExecutions?: number;
    /**
     * <p>The amount of provisioned concurrency available.</p>
     */
    AvailableProvisionedConcurrentExecutions?: number;
    /**
     * <p>The amount of provisioned concurrency allocated.</p>
     */
    AllocatedProvisionedConcurrentExecutions?: number;
    /**
     * <p>The status of the allocation process.</p>
     */
    Status?: ProvisionedConcurrencyStatusEnum | string;
    /**
     * <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
     */
    StatusReason?: string;
    /**
     * <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>
     */
    LastModified?: string;
}
export interface ListProvisionedConcurrencyConfigsResponse {
    /**
     * <p>A list of provisioned concurrency configurations.</p>
     */
    ProvisionedConcurrencyConfigs?: ProvisionedConcurrencyConfigListItem[];
    /**
     * <p>The pagination token that's included if more results are available.</p>
     */
    NextMarker?: string;
}
export interface ListTagsRequest {
    /**
     * <p>The function's Amazon Resource Name (ARN).
     *       Note: Lambda does not support adding tags to aliases or versions.</p>
     */
    Resource: string | undefined;
}
export interface ListTagsResponse {
    /**
     * <p>The function's tags.</p>
     */
    Tags?: Record<string, string>;
}
export interface ListVersionsByFunctionRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
     */
    Marker?: string;
    /**
     * <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>
     */
    MaxItems?: number;
}
export interface ListVersionsByFunctionResponse {
    /**
     * <p>The pagination token that's included if more results are available.</p>
     */
    NextMarker?: string;
    /**
     * <p>A list of Lambda function versions.</p>
     */
    Versions?: FunctionConfiguration[];
}
/**
 * <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>
 */
export interface LayerVersionContentInput {
    /**
     * <p>The Amazon S3 bucket of the layer archive.</p>
     */
    S3Bucket?: string;
    /**
     * <p>The Amazon S3 key of the layer archive.</p>
     */
    S3Key?: string;
    /**
     * <p>For versioned objects, the version of the layer archive object to use.</p>
     */
    S3ObjectVersion?: string;
    /**
     * <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>
     */
    ZipFile?: Uint8Array;
}
export interface PublishLayerVersionRequest {
    /**
     * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
     */
    LayerName: string | undefined;
    /**
     * <p>The description of the version.</p>
     */
    Description?: string;
    /**
     * <p>The function layer archive.</p>
     */
    Content: LayerVersionContentInput | undefined;
    /**
     * <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>
     */
    CompatibleRuntimes?: (Runtime | string)[];
    /**
     * <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>
     */
    LicenseInfo?: string;
    /**
     * <p>A list of compatible
     * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
     */
    CompatibleArchitectures?: (Architecture | string)[];
}
export interface PublishLayerVersionResponse {
    /**
     * <p>Details about the layer version.</p>
     */
    Content?: LayerVersionContentOutput;
    /**
     * <p>The ARN of the layer.</p>
     */
    LayerArn?: string;
    /**
     * <p>The ARN of the layer version.</p>
     */
    LayerVersionArn?: string;
    /**
     * <p>The description of the version.</p>
     */
    Description?: string;
    /**
     * <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>
     */
    CreatedDate?: string;
    /**
     * <p>The version number.</p>
     */
    Version?: number;
    /**
     * <p>The layer's compatible runtimes.</p>
     */
    CompatibleRuntimes?: (Runtime | string)[];
    /**
     * <p>The layer's software license.</p>
     */
    LicenseInfo?: string;
    /**
     * <p>A list of compatible
     * <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
     */
    CompatibleArchitectures?: (Architecture | string)[];
}
export interface PublishVersionRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <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>
     */
    CodeSha256?: string;
    /**
     * <p>A description for the version to override the description in the function configuration.</p>
     */
    Description?: string;
    /**
     * <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>
     */
    RevisionId?: string;
}
export interface PutFunctionCodeSigningConfigRequest {
    /**
     * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
     */
    CodeSigningConfigArn: string | undefined;
    /**
     * <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>
     */
    FunctionName: string | undefined;
}
export interface PutFunctionCodeSigningConfigResponse {
    /**
     * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
     */
    CodeSigningConfigArn: string | undefined;
    /**
     * <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>
     */
    FunctionName: string | undefined;
}
export interface PutFunctionConcurrencyRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The number of simultaneous executions to reserve for the function.</p>
     */
    ReservedConcurrentExecutions: number | undefined;
}
export interface PutFunctionEventInvokeConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>A version number or alias name.</p>
     */
    Qualifier?: string;
    /**
     * <p>The maximum number of times to retry when the function returns an error.</p>
     */
    MaximumRetryAttempts?: number;
    /**
     * <p>The maximum age of a request that Lambda sends to a function for processing.</p>
     */
    MaximumEventAgeInSeconds?: number;
    /**
     * <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>
     */
    DestinationConfig?: DestinationConfig;
}
export interface PutProvisionedConcurrencyConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The version number or alias name.</p>
     */
    Qualifier: string | undefined;
    /**
     * <p>The amount of provisioned concurrency to allocate for the version or alias.</p>
     */
    ProvisionedConcurrentExecutions: number | undefined;
}
export interface PutProvisionedConcurrencyConfigResponse {
    /**
     * <p>The amount of provisioned concurrency requested.</p>
     */
    RequestedProvisionedConcurrentExecutions?: number;
    /**
     * <p>The amount of provisioned concurrency available.</p>
     */
    AvailableProvisionedConcurrentExecutions?: number;
    /**
     * <p>The amount of provisioned concurrency allocated.</p>
     */
    AllocatedProvisionedConcurrentExecutions?: number;
    /**
     * <p>The status of the allocation process.</p>
     */
    Status?: ProvisionedConcurrencyStatusEnum | string;
    /**
     * <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
     */
    StatusReason?: string;
    /**
     * <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>
     */
    LastModified?: string;
}
export interface RemoveLayerVersionPermissionRequest {
    /**
     * <p>The name or Amazon Resource Name (ARN) of the layer.</p>
     */
    LayerName: string | undefined;
    /**
     * <p>The version number.</p>
     */
    VersionNumber: number | undefined;
    /**
     * <p>The identifier that was specified when the statement was added.</p>
     */
    StatementId: string | undefined;
    /**
     * <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>
     */
    RevisionId?: string;
}
export interface RemovePermissionRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>Statement ID of the permission to remove.</p>
     */
    StatementId: string | undefined;
    /**
     * <p>Specify a version or alias to remove permissions from a published version of the function.</p>
     */
    Qualifier?: string;
    /**
     * <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>
     */
    RevisionId?: string;
}
export interface TagResourceRequest {
    /**
     * <p>The function's Amazon Resource Name (ARN).</p>
     */
    Resource: string | undefined;
    /**
     * <p>A list of tags to apply to the function.</p>
     */
    Tags: Record<string, string> | undefined;
}
export interface UntagResourceRequest {
    /**
     * <p>The function's Amazon Resource Name (ARN).</p>
     */
    Resource: string | undefined;
    /**
     * <p>A list of tag keys to remove from the function.</p>
     */
    TagKeys: string[] | undefined;
}
export interface UpdateAliasRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The name of the alias.</p>
     */
    Name: string | undefined;
    /**
     * <p>The function version that the alias invokes.</p>
     */
    FunctionVersion?: string;
    /**
     * <p>A description of the alias.</p>
     */
    Description?: string;
    /**
     * <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>
     */
    RoutingConfig?: AliasRoutingConfiguration;
    /**
     * <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>
     */
    RevisionId?: string;
}
export interface UpdateCodeSigningConfigRequest {
    /**
     * <p>The The Amazon Resource Name (ARN) of the code signing configuration.</p>
     */
    CodeSigningConfigArn: string | undefined;
    /**
     * <p>Descriptive name for this code signing configuration.</p>
     */
    Description?: string;
    /**
     * <p>Signing profiles for this code signing configuration.</p>
     */
    AllowedPublishers?: AllowedPublishers;
    /**
     * <p>The code signing policy.</p>
     */
    CodeSigningPolicies?: CodeSigningPolicies;
}
export interface UpdateCodeSigningConfigResponse {
    /**
     * <p>The code signing configuration</p>
     */
    CodeSigningConfig: CodeSigningConfig | undefined;
}
export interface UpdateEventSourceMappingRequest {
    /**
     * <p>The identifier of the event source mapping.</p>
     */
    UUID: string | undefined;
    /**
     * <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>
     */
    FunctionName?: string;
    /**
     * <p>When true, the event source mapping is active. When false, Lambda pauses polling and invocation.</p>
     *          <p>Default: True</p>
     */
    Enabled?: boolean;
    /**
     * <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 10,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>
     *             <li>
     *                <p>
     *                   <b>Amazon MQ (ActiveMQ and RabbitMQ)</b> - Default 100. Max 10,000.</p>
     *             </li>
     *          </ul>
     */
    BatchSize?: number;
    /**
     * <p>(Streams and Amazon SQS) An object that defines the filter criteria that
     *     determine whether Lambda should process an event. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html">Lambda event filtering</a>.</p>
     */
    FilterCriteria?: FilterCriteria;
    /**
     * <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>
     */
    MaximumBatchingWindowInSeconds?: number;
    /**
     * <p>(Streams only) An Amazon SQS queue or Amazon SNS topic destination for discarded records.</p>
     */
    DestinationConfig?: DestinationConfig;
    /**
     * <p>(Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>
     */
    MaximumRecordAgeInSeconds?: number;
    /**
     * <p>(Streams only) If the function returns an error, split the batch in two and retry.</p>
     */
    BisectBatchOnFunctionError?: boolean;
    /**
     * <p>(Streams only) 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>
     */
    MaximumRetryAttempts?: number;
    /**
     * <p>(Streams only) The number of batches to process from each shard concurrently.</p>
     */
    ParallelizationFactor?: number;
    /**
     * <p>An array of authentication protocols or VPC components required to secure your event source.</p>
     */
    SourceAccessConfigurations?: SourceAccessConfiguration[];
    /**
     * <p>(Streams only) The duration in seconds of a processing window. The range is between 1 second and 900 seconds.</p>
     */
    TumblingWindowInSeconds?: number;
    /**
     * <p>(Streams and Amazon SQS) A list of current response type enums applied to the event source mapping.</p>
     */
    FunctionResponseTypes?: (FunctionResponseType | string)[];
}
export interface UpdateFunctionCodeRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients
     * handle the encoding for you. Use only with a function defined with a .zip file archive deployment package.</p>
     */
    ZipFile?: Uint8Array;
    /**
     * <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. Use only with a function defined with a .zip file archive deployment package.</p>
     */
    S3Bucket?: string;
    /**
     * <p>The Amazon S3 key of the deployment package. Use only with a function defined with a .zip file archive deployment package.</p>
     */
    S3Key?: string;
    /**
     * <p>For versioned objects, the version of the deployment package object to use.</p>
     */
    S3ObjectVersion?: string;
    /**
     * <p>URI of a container image in the Amazon ECR registry. Do not use for a function defined
     *     with a .zip file archive.</p>
     */
    ImageUri?: string;
    /**
     * <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>
     */
    Publish?: boolean;
    /**
     * <p>Set to true to validate the request parameters and access permissions without modifying the function
     *       code.</p>
     */
    DryRun?: boolean;
    /**
     * <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>
     */
    RevisionId?: string;
    /**
     * <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64).
     *      The default value is <code>x86_64</code>.</p>
     */
    Architectures?: (Architecture | string)[];
}
export interface UpdateFunctionConfigurationRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
     */
    Role?: string;
    /**
     * <p>The name of the method within your code that Lambda calls to execute your function.
     * Handler is required if the deployment package is a .zip file archive. 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>
     */
    Handler?: string;
    /**
     * <p>A description of the function.</p>
     */
    Description?: string;
    /**
     * <p>The amount of time (in seconds) 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>
     */
    Timeout?: number;
    /**
     * <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>
     */
    MemorySize?: number;
    /**
     * <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>
     */
    VpcConfig?: VpcConfig;
    /**
     * <p>Environment variables that are accessible from function code during execution.</p>
     */
    Environment?: Environment;
    /**
     * <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime</a>. Runtime is required if the deployment package is a .zip file archive.
     *         </p>
     */
    Runtime?: Runtime | string;
    /**
     * <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>
     */
    DeadLetterConfig?: DeadLetterConfig;
    /**
     * <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>
     */
    KMSKeyArn?: string;
    /**
     * <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>
     */
    TracingConfig?: TracingConfig;
    /**
     * <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>
     */
    RevisionId?: string;
    /**
     * <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>
     */
    Layers?: string[];
    /**
     * <p>Connection settings for an Amazon EFS file system.</p>
     */
    FileSystemConfigs?: FileSystemConfig[];
    /**
     * <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>
     */
    ImageConfig?: ImageConfig;
    /**
     * <p>The size of the function’s /tmp directory in MB. The default value is 512, but can be any whole number between 512 and 10240 MB.</p>
     */
    EphemeralStorage?: EphemeralStorage;
}
export interface UpdateFunctionEventInvokeConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>A version number or alias name.</p>
     */
    Qualifier?: string;
    /**
     * <p>The maximum number of times to retry when the function returns an error.</p>
     */
    MaximumRetryAttempts?: number;
    /**
     * <p>The maximum age of a request that Lambda sends to a function for processing.</p>
     */
    MaximumEventAgeInSeconds?: number;
    /**
     * <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>
     */
    DestinationConfig?: DestinationConfig;
}
export interface UpdateFunctionUrlConfigRequest {
    /**
     * <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>
     */
    FunctionName: string | undefined;
    /**
     * <p>The alias name.</p>
     */
    Qualifier?: string;
    /**
     * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
     *   <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
     *   see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
     */
    AuthType?: FunctionUrlAuthType | string;
    /**
     * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
     *   for your function URL.</p>
     */
    Cors?: Cors;
}
export interface UpdateFunctionUrlConfigResponse {
    /**
     * <p>The HTTP URL endpoint for your function.</p>
     */
    FunctionUrl: string | undefined;
    /**
     * <p>The Amazon Resource Name (ARN) of your function.</p>
     */
    FunctionArn: string | undefined;
    /**
     * <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
     *   <code>IAM</code> users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
     *   see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html"> Security and auth model for Lambda function URLs</a>.</p>
     */
    AuthType: FunctionUrlAuthType | string | undefined;
    /**
     * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
     *   for your function URL.</p>
     */
    Cors?: Cors;
    /**
     * <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
     */
    CreationTime: string | undefined;
    /**
     * <p>When the function URL configuration was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
     */
    LastModifiedTime: string | undefined;
}
/**
 * @internal
 */
export declare const AccountLimitFilterSensitiveLog: (obj: AccountLimit) => any;
/**
 * @internal
 */
export declare const AccountUsageFilterSensitiveLog: (obj: AccountUsage) => any;
/**
 * @internal
 */
export declare const AddLayerVersionPermissionRequestFilterSensitiveLog: (obj: AddLayerVersionPermissionRequest) => any;
/**
 * @internal
 */
export declare const AddLayerVersionPermissionResponseFilterSensitiveLog: (obj: AddLayerVersionPermissionResponse) => any;
/**
 * @internal
 */
export declare const AddPermissionRequestFilterSensitiveLog: (obj: AddPermissionRequest) => any;
/**
 * @internal
 */
export declare const AddPermissionResponseFilterSensitiveLog: (obj: AddPermissionResponse) => any;
/**
 * @internal
 */
export declare const AliasRoutingConfigurationFilterSensitiveLog: (obj: AliasRoutingConfiguration) => any;
/**
 * @internal
 */
export declare const AliasConfigurationFilterSensitiveLog: (obj: AliasConfiguration) => any;
/**
 * @internal
 */
export declare const AllowedPublishersFilterSensitiveLog: (obj: AllowedPublishers) => any;
/**
 * @internal
 */
export declare const AmazonManagedKafkaEventSourceConfigFilterSensitiveLog: (obj: AmazonManagedKafkaEventSourceConfig) => any;
/**
 * @internal
 */
export declare const CreateAliasRequestFilterSensitiveLog: (obj: CreateAliasRequest) => any;
/**
 * @internal
 */
export declare const CodeSigningPoliciesFilterSensitiveLog: (obj: CodeSigningPolicies) => any;
/**
 * @internal
 */
export declare const CreateCodeSigningConfigRequestFilterSensitiveLog: (obj: CreateCodeSigningConfigRequest) => any;
/**
 * @internal
 */
export declare const CodeSigningConfigFilterSensitiveLog: (obj: CodeSigningConfig) => any;
/**
 * @internal
 */
export declare const CreateCodeSigningConfigResponseFilterSensitiveLog: (obj: CreateCodeSigningConfigResponse) => any;
/**
 * @internal
 */
export declare const OnFailureFilterSensitiveLog: (obj: OnFailure) => any;
/**
 * @internal
 */
export declare const OnSuccessFilterSensitiveLog: (obj: OnSuccess) => any;
/**
 * @internal
 */
export declare const DestinationConfigFilterSensitiveLog: (obj: DestinationConfig) => any;
/**
 * @internal
 */
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
/**
 * @internal
 */
export declare const FilterCriteriaFilterSensitiveLog: (obj: FilterCriteria) => any;
/**
 * @internal
 */
export declare const SelfManagedEventSourceFilterSensitiveLog: (obj: SelfManagedEventSource) => any;
/**
 * @internal
 */
export declare const SelfManagedKafkaEventSourceConfigFilterSensitiveLog: (obj: SelfManagedKafkaEventSourceConfig) => any;
/**
 * @internal
 */
export declare const SourceAccessConfigurationFilterSensitiveLog: (obj: SourceAccessConfiguration) => any;
/**
 * @internal
 */
export declare const CreateEventSourceMappingRequestFilterSensitiveLog: (obj: CreateEventSourceMappingRequest) => any;
/**
 * @internal
 */
export declare const EventSourceMappingConfigurationFilterSensitiveLog: (obj: EventSourceMappingConfiguration) => any;
/**
 * @internal
 */
export declare const FunctionCodeFilterSensitiveLog: (obj: FunctionCode) => any;
/**
 * @internal
 */
export declare const DeadLetterConfigFilterSensitiveLog: (obj: DeadLetterConfig) => any;
/**
 * @internal
 */
export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
/**
 * @internal
 */
export declare const EphemeralStorageFilterSensitiveLog: (obj: EphemeralStorage) => any;
/**
 * @internal
 */
export declare const FileSystemConfigFilterSensitiveLog: (obj: FileSystemConfig) => any;
/**
 * @internal
 */
export declare const ImageConfigFilterSensitiveLog: (obj: ImageConfig) => any;
/**
 * @internal
 */
export declare const TracingConfigFilterSensitiveLog: (obj: TracingConfig) => any;
/**
 * @internal
 */
export declare const VpcConfigFilterSensitiveLog: (obj: VpcConfig) => any;
/**
 * @internal
 */
export declare const CreateFunctionRequestFilterSensitiveLog: (obj: CreateFunctionRequest) => any;
/**
 * @internal
 */
export declare const EnvironmentErrorFilterSensitiveLog: (obj: EnvironmentError) => any;
/**
 * @internal
 */
export declare const EnvironmentResponseFilterSensitiveLog: (obj: EnvironmentResponse) => any;
/**
 * @internal
 */
export declare const ImageConfigErrorFilterSensitiveLog: (obj: ImageConfigError) => any;
/**
 * @internal
 */
export declare const ImageConfigResponseFilterSensitiveLog: (obj: ImageConfigResponse) => any;
/**
 * @internal
 */
export declare const LayerFilterSensitiveLog: (obj: Layer) => any;
/**
 * @internal
 */
export declare const TracingConfigResponseFilterSensitiveLog: (obj: TracingConfigResponse) => any;
/**
 * @internal
 */
export declare const VpcConfigResponseFilterSensitiveLog: (obj: VpcConfigResponse) => any;
/**
 * @internal
 */
export declare const FunctionConfigurationFilterSensitiveLog: (obj: FunctionConfiguration) => any;
/**
 * @internal
 */
export declare const CorsFilterSensitiveLog: (obj: Cors) => any;
/**
 * @internal
 */
export declare const CreateFunctionUrlConfigRequestFilterSensitiveLog: (obj: CreateFunctionUrlConfigRequest) => any;
/**
 * @internal
 */
export declare const CreateFunctionUrlConfigResponseFilterSensitiveLog: (obj: CreateFunctionUrlConfigResponse) => any;
/**
 * @internal
 */
export declare const DeleteAliasRequestFilterSensitiveLog: (obj: DeleteAliasRequest) => any;
/**
 * @internal
 */
export declare const DeleteCodeSigningConfigRequestFilterSensitiveLog: (obj: DeleteCodeSigningConfigRequest) => any;
/**
 * @internal
 */
export declare const DeleteCodeSigningConfigResponseFilterSensitiveLog: (obj: DeleteCodeSigningConfigResponse) => any;
/**
 * @internal
 */
export declare const DeleteEventSourceMappingRequestFilterSensitiveLog: (obj: DeleteEventSourceMappingRequest) => any;
/**
 * @internal
 */
export declare const DeleteFunctionRequestFilterSensitiveLog: (obj: DeleteFunctionRequest) => any;
/**
 * @internal
 */
export declare const DeleteFunctionCodeSigningConfigRequestFilterSensitiveLog: (obj: DeleteFunctionCodeSigningConfigRequest) => any;
/**
 * @internal
 */
export declare const DeleteFunctionConcurrencyRequestFilterSensitiveLog: (obj: DeleteFunctionConcurrencyRequest) => any;
/**
 * @internal
 */
export declare const DeleteFunctionEventInvokeConfigRequestFilterSensitiveLog: (obj: DeleteFunctionEventInvokeConfigRequest) => any;
/**
 * @internal
 */
export declare const DeleteFunctionUrlConfigRequestFilterSensitiveLog: (obj: DeleteFunctionUrlConfigRequest) => any;
/**
 * @internal
 */
export declare const DeleteLayerVersionRequestFilterSensitiveLog: (obj: DeleteLayerVersionRequest) => any;
/**
 * @internal
 */
export declare const DeleteProvisionedConcurrencyConfigRequestFilterSensitiveLog: (obj: DeleteProvisionedConcurrencyConfigRequest) => any;
/**
 * @internal
 */
export declare const GetAccountSettingsRequestFilterSensitiveLog: (obj: GetAccountSettingsRequest) => any;
/**
 * @internal
 */
export declare const GetAccountSettingsResponseFilterSensitiveLog: (obj: GetAccountSettingsResponse) => any;
/**
 * @internal
 */
export declare const GetAliasRequestFilterSensitiveLog: (obj: GetAliasRequest) => any;
/**
 * @internal
 */
export declare const GetCodeSigningConfigRequestFilterSensitiveLog: (obj: GetCodeSigningConfigRequest) => any;
/**
 * @internal
 */
export declare const GetCodeSigningConfigResponseFilterSensitiveLog: (obj: GetCodeSigningConfigResponse) => any;
/**
 * @internal
 */
export declare const GetEventSourceMappingRequestFilterSensitiveLog: (obj: GetEventSourceMappingRequest) => any;
/**
 * @internal
 */
export declare const GetFunctionRequestFilterSensitiveLog: (obj: GetFunctionRequest) => any;
/**
 * @internal
 */
export declare const FunctionCodeLocationFilterSensitiveLog: (obj: FunctionCodeLocation) => any;
/**
 * @internal
 */
export declare const ConcurrencyFilterSensitiveLog: (obj: Concurrency) => any;
/**
 * @internal
 */
export declare const GetFunctionResponseFilterSensitiveLog: (obj: GetFunctionResponse) => any;
/**
 * @internal
 */
export declare const GetFunctionCodeSigningConfigRequestFilterSensitiveLog: (obj: GetFunctionCodeSigningConfigRequest) => any;
/**
 * @internal
 */
export declare const GetFunctionCodeSigningConfigResponseFilterSensitiveLog: (obj: GetFunctionCodeSigningConfigResponse) => any;
/**
 * @internal
 */
export declare const GetFunctionConcurrencyRequestFilterSensitiveLog: (obj: GetFunctionConcurrencyRequest) => any;
/**
 * @internal
 */
export declare const GetFunctionConcurrencyResponseFilterSensitiveLog: (obj: GetFunctionConcurrencyResponse) => any;
/**
 * @internal
 */
export declare const GetFunctionConfigurationRequestFilterSensitiveLog: (obj: GetFunctionConfigurationRequest) => any;
/**
 * @internal
 */
export declare const FunctionEventInvokeConfigFilterSensitiveLog: (obj: FunctionEventInvokeConfig) => any;
/**
 * @internal
 */
export declare const GetFunctionEventInvokeConfigRequestFilterSensitiveLog: (obj: GetFunctionEventInvokeConfigRequest) => any;
/**
 * @internal
 */
export declare const GetFunctionUrlConfigRequestFilterSensitiveLog: (obj: GetFunctionUrlConfigRequest) => any;
/**
 * @internal
 */
export declare const GetFunctionUrlConfigResponseFilterSensitiveLog: (obj: GetFunctionUrlConfigResponse) => any;
/**
 * @internal
 */
export declare const GetLayerVersionRequestFilterSensitiveLog: (obj: GetLayerVersionRequest) => any;
/**
 * @internal
 */
export declare const LayerVersionContentOutputFilterSensitiveLog: (obj: LayerVersionContentOutput) => any;
/**
 * @internal
 */
export declare const GetLayerVersionResponseFilterSensitiveLog: (obj: GetLayerVersionResponse) => any;
/**
 * @internal
 */
export declare const GetLayerVersionByArnRequestFilterSensitiveLog: (obj: GetLayerVersionByArnRequest) => any;
/**
 * @internal
 */
export declare const GetLayerVersionPolicyRequestFilterSensitiveLog: (obj: GetLayerVersionPolicyRequest) => any;
/**
 * @internal
 */
export declare const GetLayerVersionPolicyResponseFilterSensitiveLog: (obj: GetLayerVersionPolicyResponse) => any;
/**
 * @internal
 */
export declare const GetPolicyRequestFilterSensitiveLog: (obj: GetPolicyRequest) => any;
/**
 * @internal
 */
export declare const GetPolicyResponseFilterSensitiveLog: (obj: GetPolicyResponse) => any;
/**
 * @internal
 */
export declare const GetProvisionedConcurrencyConfigRequestFilterSensitiveLog: (obj: GetProvisionedConcurrencyConfigRequest) => any;
/**
 * @internal
 */
export declare const GetProvisionedConcurrencyConfigResponseFilterSensitiveLog: (obj: GetProvisionedConcurrencyConfigResponse) => any;
/**
 * @internal
 */
export declare const InvocationRequestFilterSensitiveLog: (obj: InvocationRequest) => any;
/**
 * @internal
 */
export declare const InvocationResponseFilterSensitiveLog: (obj: InvocationResponse) => any;
/**
 * @internal
 */
export declare const InvokeAsyncRequestFilterSensitiveLog: (obj: InvokeAsyncRequest) => any;
/**
 * @internal
 */
export declare const InvokeAsyncResponseFilterSensitiveLog: (obj: InvokeAsyncResponse) => any;
/**
 * @internal
 */
export declare const ListAliasesRequestFilterSensitiveLog: (obj: ListAliasesRequest) => any;
/**
 * @internal
 */
export declare const ListAliasesResponseFilterSensitiveLog: (obj: ListAliasesResponse) => any;
/**
 * @internal
 */
export declare const ListCodeSigningConfigsRequestFilterSensitiveLog: (obj: ListCodeSigningConfigsRequest) => any;
/**
 * @internal
 */
export declare const ListCodeSigningConfigsResponseFilterSensitiveLog: (obj: ListCodeSigningConfigsResponse) => any;
/**
 * @internal
 */
export declare const ListEventSourceMappingsRequestFilterSensitiveLog: (obj: ListEventSourceMappingsRequest) => any;
/**
 * @internal
 */
export declare const ListEventSourceMappingsResponseFilterSensitiveLog: (obj: ListEventSourceMappingsResponse) => any;
/**
 * @internal
 */
export declare const ListFunctionEventInvokeConfigsRequestFilterSensitiveLog: (obj: ListFunctionEventInvokeConfigsRequest) => any;
/**
 * @internal
 */
export declare const ListFunctionEventInvokeConfigsResponseFilterSensitiveLog: (obj: ListFunctionEventInvokeConfigsResponse) => any;
/**
 * @internal
 */
export declare const ListFunctionsRequestFilterSensitiveLog: (obj: ListFunctionsRequest) => any;
/**
 * @internal
 */
export declare const ListFunctionsResponseFilterSensitiveLog: (obj: ListFunctionsResponse) => any;
/**
 * @internal
 */
export declare const ListFunctionsByCodeSigningConfigRequestFilterSensitiveLog: (obj: ListFunctionsByCodeSigningConfigRequest) => any;
/**
 * @internal
 */
export declare const ListFunctionsByCodeSigningConfigResponseFilterSensitiveLog: (obj: ListFunctionsByCodeSigningConfigResponse) => any;
/**
 * @internal
 */
export declare const ListFunctionUrlConfigsRequestFilterSensitiveLog: (obj: ListFunctionUrlConfigsRequest) => any;
/**
 * @internal
 */
export declare const FunctionUrlConfigFilterSensitiveLog: (obj: FunctionUrlConfig) => any;
/**
 * @internal
 */
export declare const ListFunctionUrlConfigsResponseFilterSensitiveLog: (obj: ListFunctionUrlConfigsResponse) => any;
/**
 * @internal
 */
export declare const ListLayersRequestFilterSensitiveLog: (obj: ListLayersRequest) => any;
/**
 * @internal
 */
export declare const LayerVersionsListItemFilterSensitiveLog: (obj: LayerVersionsListItem) => any;
/**
 * @internal
 */
export declare const LayersListItemFilterSensitiveLog: (obj: LayersListItem) => any;
/**
 * @internal
 */
export declare const ListLayersResponseFilterSensitiveLog: (obj: ListLayersResponse) => any;
/**
 * @internal
 */
export declare const ListLayerVersionsRequestFilterSensitiveLog: (obj: ListLayerVersionsRequest) => any;
/**
 * @internal
 */
export declare const ListLayerVersionsResponseFilterSensitiveLog: (obj: ListLayerVersionsResponse) => any;
/**
 * @internal
 */
export declare const ListProvisionedConcurrencyConfigsRequestFilterSensitiveLog: (obj: ListProvisionedConcurrencyConfigsRequest) => any;
/**
 * @internal
 */
export declare const ProvisionedConcurrencyConfigListItemFilterSensitiveLog: (obj: ProvisionedConcurrencyConfigListItem) => any;
/**
 * @internal
 */
export declare const ListProvisionedConcurrencyConfigsResponseFilterSensitiveLog: (obj: ListProvisionedConcurrencyConfigsResponse) => any;
/**
 * @internal
 */
export declare const ListTagsRequestFilterSensitiveLog: (obj: ListTagsRequest) => any;
/**
 * @internal
 */
export declare const ListTagsResponseFilterSensitiveLog: (obj: ListTagsResponse) => any;
/**
 * @internal
 */
export declare const ListVersionsByFunctionRequestFilterSensitiveLog: (obj: ListVersionsByFunctionRequest) => any;
/**
 * @internal
 */
export declare const ListVersionsByFunctionResponseFilterSensitiveLog: (obj: ListVersionsByFunctionResponse) => any;
/**
 * @internal
 */
export declare const LayerVersionContentInputFilterSensitiveLog: (obj: LayerVersionContentInput) => any;
/**
 * @internal
 */
export declare const PublishLayerVersionRequestFilterSensitiveLog: (obj: PublishLayerVersionRequest) => any;
/**
 * @internal
 */
export declare const PublishLayerVersionResponseFilterSensitiveLog: (obj: PublishLayerVersionResponse) => any;
/**
 * @internal
 */
export declare const PublishVersionRequestFilterSensitiveLog: (obj: PublishVersionRequest) => any;
/**
 * @internal
 */
export declare const PutFunctionCodeSigningConfigRequestFilterSensitiveLog: (obj: PutFunctionCodeSigningConfigRequest) => any;
/**
 * @internal
 */
export declare const PutFunctionCodeSigningConfigResponseFilterSensitiveLog: (obj: PutFunctionCodeSigningConfigResponse) => any;
/**
 * @internal
 */
export declare const PutFunctionConcurrencyRequestFilterSensitiveLog: (obj: PutFunctionConcurrencyRequest) => any;
/**
 * @internal
 */
export declare const PutFunctionEventInvokeConfigRequestFilterSensitiveLog: (obj: PutFunctionEventInvokeConfigRequest) => any;
/**
 * @internal
 */
export declare const PutProvisionedConcurrencyConfigRequestFilterSensitiveLog: (obj: PutProvisionedConcurrencyConfigRequest) => any;
/**
 * @internal
 */
export declare const PutProvisionedConcurrencyConfigResponseFilterSensitiveLog: (obj: PutProvisionedConcurrencyConfigResponse) => any;
/**
 * @internal
 */
export declare const RemoveLayerVersionPermissionRequestFilterSensitiveLog: (obj: RemoveLayerVersionPermissionRequest) => any;
/**
 * @internal
 */
export declare const RemovePermissionRequestFilterSensitiveLog: (obj: RemovePermissionRequest) => any;
/**
 * @internal
 */
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
/**
 * @internal
 */
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
/**
 * @internal
 */
export declare const UpdateAliasRequestFilterSensitiveLog: (obj: UpdateAliasRequest) => any;
/**
 * @internal
 */
export declare const UpdateCodeSigningConfigRequestFilterSensitiveLog: (obj: UpdateCodeSigningConfigRequest) => any;
/**
 * @internal
 */
export declare const UpdateCodeSigningConfigResponseFilterSensitiveLog: (obj: UpdateCodeSigningConfigResponse) => any;
/**
 * @internal
 */
export declare const UpdateEventSourceMappingRequestFilterSensitiveLog: (obj: UpdateEventSourceMappingRequest) => any;
/**
 * @internal
 */
export declare const UpdateFunctionCodeRequestFilterSensitiveLog: (obj: UpdateFunctionCodeRequest) => any;
/**
 * @internal
 */
export declare const UpdateFunctionConfigurationRequestFilterSensitiveLog: (obj: UpdateFunctionConfigurationRequest) => any;
/**
 * @internal
 */
export declare const UpdateFunctionEventInvokeConfigRequestFilterSensitiveLog: (obj: UpdateFunctionEventInvokeConfigRequest) => any;
/**
 * @internal
 */
export declare const UpdateFunctionUrlConfigRequestFilterSensitiveLog: (obj: UpdateFunctionUrlConfigRequest) => any;
/**
 * @internal
 */
export declare const UpdateFunctionUrlConfigResponseFilterSensitiveLog: (obj: UpdateFunctionUrlConfigResponse) => any;
