AWS.Tools.Lambda.XML

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>AWS.Tools.Lambda</name>
    </assembly>
    <members>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet">
            <summary>
            Submits an invocation request to Lambda. Upon receiving the request, Lambda executes
            the specified cloud function. To see the logs generated by the cloud
            function execution, see the CloudWatch logs console.
             
              
            <para>
            This operation requires permission for the <code>lambda:Invoke</code> action.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.FunctionName">
            <summary>
            <para>
            The Lambda function name.
            </para>
            <para>
            You can specify a function name (for example, Thumbnail) or you can specify Amazon Resource Name (ARN) of
            the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail). AWS Lambda also allows
            you to specify a partial ARN (for example, account-id:Thumbnail). Note that the length constraint applies
            only to the ARN. If you specify only the function name, it is limited to 64 character in length.
            </para>
            <para>
            Length constraints: Minimum length of 1. Maximum length of 140.
            </para>
            <para>
            Pattern: (arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.Payload">
            <summary>
            JSON that you want to provide to your Lambda function as input.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.ClientContext">
            <summary>
            Using the <code>ClientContext</code> you can pass client-specific information to the
            Lambda function you are invoking. You can then process the client information in your
            Lambda function as you choose through the context variable. For an example of a ClientContext
            JSON, go to <a href="http://docs.aws.amazon.com/mobileanalytics/latest/ug/PutEvents.html">PutEvents</a>
            in the <i>Amazon Mobile Analytics API Reference and User Guide</i>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.InvocationType">
            <summary>
            By default, the <code>Invoke</code> API assumes "RequestResponse" invocation type.
            You can optionally request asynchronous execution by specifying "Event" as the <code>InvocationType</code>.
            You can also use this parameter to request AWS Lambda to not execute the function
            but do some verification, such as if the caller is authorized to invoke the function
            and if the inputs are valid. You request this by specifying "DryRun" as the <code>InvocationType</code>.
            This is useful in a cross-account scenario when you want to verify access to a function
            without running it.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.LogType">
            <summary>
            You can set this optional parameter to "Tail" in the request only if you specify the
            <code>InvocationType</code> parameter with value "RequestResponse". In this case,
            AWS Lambda returns the base64-encoded last 4 KB of log data produced by your Lambda
            function in the <code>x-amz-log-results</code> header.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet">
            <summary>
            Submits an invocation request to Lambda. Upon receiving the request, Lambda executes
            the specified cloud function asynchronously. To see the logs generated by the cloud
            function execution, see the CloudWatch logs console.
             
              
            <para>
            This operation requires permission for the <code>lambda:InvokeAsync</code> action.
            </para>
            <important> <p>This API is deprecated. We recommend you use <code>Invoke</code> API
            (see <a>Invoke</a>).</p> </important> <p>Submits an invocation request to AWS Lambda.
            Upon receiving the request, Lambda executes the specified function asynchronously.
            To see the logs generated by the Lambda function execution, see the CloudWatch Logs
            console.</p> <p>This operation requires permission for the
            <code>lambda:InvokeFunction</code> action.</p>
            <br/><br/>This operation is deprecated.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet.FunctionName">
            <summary>
            <para>
            The Lambda function name.
            </para>
            <para>
            Length constraints: Minimum length of 1. Maximum length of 140.
            </para>
            <para>
            Pattern: (arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet.InvokeArg">
            <summary>
            JSON that you want to provide to your Lambda function as input.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet">
            <summary>
            Creates a new Lambda function. If the function name already exists, the operation will fail.
            Note that the function name is case-sensitive.
            <para>
            This operation requires permission for the <code>lambda:CreateFunction</code> action.
            </para>
            <para>
            The code for the function may be supplied from a zip file in an S3 bucket,
            from a zip file on the local file system (the default) or from a memory stream onto
            a resource containing the code.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Description">
            <summary>
            A short user-defined function description. Lambda does not use this value. Assign
            a meaningful description as you see fit.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.FunctionName">
            <summary>
            <para>
            The name you want to assign to the function you are uploading. The function names appear in the console and are
            returned in the ListFunctions API. Function names are used to specify functions to other AWS Lambda APIs, such
            as Invoke.
            </para>
            <para>
            Length constraints: Minimum length of 1. Maximum length of 140.
            </para>
            <para>
            Pattern: (arn:aws:lambda:)?([a-z]{2}-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.BucketName">
            <summary>
            Amazon S3 bucket name where the .zip file containing your deployment package is stored.
            This bucket must reside in the same AWS region where you are creating the Lambda function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Key">
            <summary>
            The key name of the Amazon S3 object (the deployment package) you want to upload to Lambda.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.VersionId">
            <summary>
            Optional version ID of the Amazon S3 object (the deployment package) you want to upload to Lambda.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.ZipFileContent">
            <summary>
            <para>
            <para>A stream onto the zip file containing your deployment package.
            For more information about creating a .zip file, go to <a href="http://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html">Execution
            Permissions</a> in the <i>AWS Lambda Developer Guide</i>. </para>
            </para>
            <para>Note: the supplied stream is not disposed when the cmdlet exits.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.ZipFilename">
            <summary>
            <para>
            The path to a zip file containing your deployment package. For more information about creating a .zip file,
            go to <a href="http://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html">Execution
            Permissions</a> in the <i>AWS Lambda Developer Guide</i>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Handler">
            <summary>
            <para>
            The function within your code that Lambda calls to begin execution. For Node.js, it
            is the <i>module-name</i>.<i>export</i> value in your function. For Java, it can be
            <code>package.class-name::handler</code> or <code>package.class-name</code>. For more
            information, see <a href="http://docs.aws.amazon.com/lambda/latest/dg/java-programming-model-handler-types.html">Lambda
            Function Handler (Java)</a>.
            </para>
            <para>
            Length constraints: Minimum length of 0. Maximum length of 128.
            </para>
            <para>
            Pattern: [^\s]+
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.MemorySize">
            <summary>
            <para>
            The amount of memory, in MB, your Lambda function is given. Lambda uses this memory
            size to infer the amount of CPU and memory allocated to your function. Your function
            use-case determines your CPU and memory requirements. For example, a database operation
            might need less memory compared to an image processing function. The default value
            is 128 MB. The value must be a multiple of 64 MB.
            </para>
            <para>
            Valid range: Minimum value of 128. Maximum value of 1536.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Role">
            <summary>
            <para>
            The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes
            your function to access any other Amazon Web Services (AWS) resources. For more information,
            see <a href="http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html">AWS
            Lambda: How it Works</a>
            </para>
            <para>
            Pattern: arn:aws:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Runtime">
            <summary>
            <para>
            The runtime environment for the Lambda function you are uploading.
            </para>
            <para>
            To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use earlier
            runtime (v0.10.42), set the value to "nodejs".
            </para>
            <para>
            Valid values: nodejs | nodejs4.3 | nodejs6.10 | java8 | python2.7 | python3.6 | dotnetcore1.0 | nodejs4.3-edge
            </para>
            <para>
            <b>Note:</b> the list of options for runtime values is those available at the time the cmdlet was last built
            and released. AWS Lambda periodically introduces new runtimes. New runtime values not listed above may be used
            without requiring a new version of the cmdlet. Simply provide the required new value name to this parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Timeout">
            <summary>
            <para>
            The function execution time at which Lambda should terminate the function. Because
            the execution time has cost implications, we recommend you set this value based on
            your expected execution time. The default is 3 seconds.
            </para>
            <para>
            Valid range: Minimum value of 1. Maximum value of 300.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.DeadLetterConfig_TargetArn">
            <summary>
            The ARN (Amazon Resource Value) of an Amazon SQS queue or Amazon SNS topic you specify
            as your Dead Letter Queue (DLQ).
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Environment_Variable">
            <summary>
            Environment variable key-value pairs that represent your environment's configuration settings. The
            value(s) you specify cannot contain a ",".
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.KMSKeyArn">
            <summary>
            The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment
            variables. If not provided, AWS Lambda will use a default service key.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Publish">
            <summary>
            If set requests that AWS Lambda create the Lambda function and publish a version as an
            atomic operation.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.VpcConfig_SecurityGroupId">
            <summary>
            <para>
            If your Lambda function accesses resources in a VPC, you provide this parameter identifying
            the list of security group IDs. The security groups and subnets specified via the
            VpcConfig_SubnetId parameter must belong to the same VPC.
            If you specify one or more security groups you must also provide at least one subnet ID.
            </para>
            <para>
            A list of one or more security groups IDs in your VPC.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.VpcConfig_SubnetId">
            <summary>
            <para>
            If your Lambda function accesses resources in a VPC, you provide this parameter identifying
            the list of subnet IDs. The security groups and subnets specified via the
            VpcConfig_SecurityGroupId parameter must belong to the same VPC.
            If you specify one or more subnets you must also provide at least one security group ID.
            </para>
            <para>
            A list of one or more subnet IDs in your VPC.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet">
            <summary>
            Updates the code for the specified Lambda function. This operation must only be used
            on an existing Lambda function and cannot be used to update the function configuration.
            <para>
            If you are using the versioning feature, note this API will always update the $LATEST
            version of your Lambda function. For information about the versioning feature, see
            <a href="http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">AWS
            Lambda Function Versioning and Aliases</a>.
            </para><para>
            This operation requires permission for the <code>lambda:UpdateFunctionCode</code>
            action.
            </para>
            <para>
            The updated code for the function may be supplied from a zip file in an S3 bucket,
            from a zip file on the local file system (the default) or from a memory stream onto
            a resource containing the code.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.FunctionName">
            <summary>
            <para>
            <para>The existing Lambda function name whose code you want to replace.</para><para> You can specify a function name (for example, <code>Thumbnail</code>) or you can
            specify Amazon Resource Name (ARN) of the function (for example, <code>arn:aws:lambda:us-west-2:account-id:function:ThumbNail</code>).
            AWS Lambda also allows you to specify a partial ARN (for example, <code>account-id:Thumbnail</code>).
            Note that the length constraint applies only to the ARN. If you specify only the function
            name, it is limited to 64 character in length. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.BucketName">
            <summary>
            Amazon S3 bucket name where the .zip file containing your deployment package is stored.
            This bucket must reside in the same AWS region as the existing Lambda function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.Key">
            <summary>
            The key name of the Amazon S3 object (the deployment package) you want to upload to Lambda.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.VersionId">
            <summary>
            Optional version ID of the Amazon S3 object (the deployment package) you want to upload to Lambda.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.ZipFileContent">
            <summary>
            <para>
            <para>A stream onto the zip file containing your deployment package.
            For more information about creating a .zip file, go to <a href="http://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html">Execution
            Permissions</a> in the <i>AWS Lambda Developer Guide</i>. </para>
            </para>
            <para>Note: the supplied stream is not disposed when the cmdlet exits.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.ZipFilename">
            <summary>
            <para>
            The path to a zip file containing your deployment package. For more information about creating a .zip file,
            go to <a href="http://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html">Execution
            Permissions</a> in the <i>AWS Lambda Developer Guide</i>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.Publish">
            <summary>
            If set requests that AWS Lambda update the Lambda function and publish a version as an
            atomic operation.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet">
            <summary>
            Adds permissions to the resource-based policy of a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layer</a>. Use this action to grant layer usage permission to other accounts.
            You can grant permission to a single account, all AWS accounts, or all accounts in
            an organization.
             
              
            <para>
            To revoke permission, call <a>RemoveLayerVersionPermission</a> with the statement
            ID that you specified when you added it.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.Action">
            <summary>
            <para>
            <para>The API action that grants access to the layer. For example, <code>lambda:GetLayerVersion</code>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.LayerName">
            <summary>
            <para>
            <para>The name or Amazon Resource Name (ARN) of the layer.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.OrganizationId">
            <summary>
            <para>
            <para>With the principal set to <code>*</code>, grant permission to all accounts in the
            specified organization.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.Principal">
            <summary>
            <para>
            <para>An account ID, or <code>*</code> to grant permission to all AWS accounts.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.RevisionId">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.StatementId">
            <summary>
            <para>
            <para>An identifier that distinguishes the policy from others on the same layer version.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.VersionNumber">
            <summary>
            <para>
            <para>The version number.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet">
            <summary>
            Grants an AWS service or another account permission to use a function. You can apply
            the policy at the function level, or specify a qualifier to restrict access to a single
            version or alias. If you use a qualifier, the invoker must use the full Amazon Resource
            Name (ARN) of that version or alias to invoke the function.
             
              
            <para>
            To grant permission to another account, specify the account ID as the <code>Principal</code>.
            For AWS services, the principal is a domain-style identifier defined by the service,
            like <code>s3.amazonaws.com</code> or <code>sns.amazonaws.com</code>. For AWS services,
            you can also specify the ARN or owning account of the associated resource as the <code>SourceArn</code>
            or <code>SourceAccount</code>. If you grant permission to a service principal without
            specifying the source, other accounts could potentially configure resources in their
            account to invoke your Lambda function.
            </para><para>
            This action adds a statement to a resource-based permission policy for the function.
            For more information about function policies, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html">Lambda
            Function Policies</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.Action">
            <summary>
            <para>
            <para>The action that the principal can use on the function. For example, <code>lambda:InvokeFunction</code>
            or <code>lambda:GetFunction</code>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.EventSourceToken">
            <summary>
            <para>
            <para>For Alexa Smart Home functions, a token that must be supplied by the invoker.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.AddPermissionRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.Principal">
            <summary>
            <para>
            <para>The AWS 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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version or alias to add permissions to a published version of the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.RevisionId">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.SourceAccount">
            <summary>
            <para>
            <para>For AWS services, the ID of the account that owns the resource. Use this instead of
            <code>SourceArn</code> to grant permission to resources that are owned by another
            account (for example, all of an account's Amazon S3 buckets). Or use it together with
            <code>SourceArn</code> to ensure that the resource is owned by the specified account.
            For example, an Amazon S3 bucket could be deleted by its owner and recreated by another
            account.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.SourceArn">
            <summary>
            <para>
            <para>For AWS services, the ARN of the AWS resource that invokes the function. For example,
            an Amazon S3 bucket or Amazon SNS topic.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.StatementId">
            <summary>
            <para>
            <para>A statement identifier that differentiates the statement from others in the same policy.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.AddLMResourceTagCmdlet">
            <summary>
            Adds <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>
            to a function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMResourceTagCmdlet.Resource">
            <summary>
            <para>
            <para>The function's Amazon Resource Name (ARN).</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMResourceTagCmdlet.Tag">
            <summary>
            <para>
            <para>A list of tags to apply to the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMResourceTagCmdlet.PassThru">
            <summary>
            Returns the value passed to the Resource parameter.
            By default, this cmdlet does not generate any output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMResourceTagCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMAccountSettingCmdlet">
            <summary>
            Retrieves details about your account's <a href="https://docs.aws.amazon.com/lambda/latest/dg/limits.html">limits</a>
            and usage in an AWS Region.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMAliasCmdlet">
            <summary>
            Returns details about a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetAliasRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasCmdlet.Name">
            <summary>
            <para>
            <para>The name of the alias.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet">
            <summary>
            Returns a list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">aliases</a>
            for a Lambda function.<br/><br/>This operation automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.ListAliasesRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet.FunctionVersion">
            <summary>
            <para>
            <para>Specify a function version to only list aliases that invoke that version.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet.Marker">
            <summary>
            <para>
            <para>Specify the pagination token that's returned by a previous request to retrieve the
            next page of results.</para>
            </para>
            <para>
            <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call.
            <br/>In order to manually control output pagination, assign $null, for the first call, and the value of $AWSHistory.LastServiceResponse.NextMarker, for subsequent calls, to this parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet.MaxItem">
            <summary>
            <para>
            <para>Limit the number of aliases returned.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingCmdlet">
            <summary>
            Returns details about an event source mapping. You can get the identifier of a mapping
            from the output of <a>ListEventSourceMappings</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingCmdlet.UUID">
            <summary>
            <para>
            <para>The identifier of the event source mapping.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet">
            <summary>
            Lists event source mappings. Specify an <code>EventSourceArn</code> to only show event
            source mappings for a single event source.<br/><br/>This operation automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet.EventSourceArn">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the event source.</para><ul><li><para><b>Amazon Kinesis</b> - The ARN of the data stream or a stream consumer.</para></li><li><para><b>Amazon DynamoDB Streams</b> - The ARN of the stream.</para></li><li><para><b>Amazon Simple Queue Service</b> - The ARN of the queue.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.ListEventSourceMappingsRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet.Marker">
            <summary>
            <para>
            <para>A pagination token returned by a previous call.</para>
            </para>
            <para>
            <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call.
            <br/>In order to manually control output pagination, assign $null, for the first call, and the value of $AWSHistory.LastServiceResponse.NextMarker, for subsequent calls, to this parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet.MaxItem">
            <summary>
            <para>
            <para>The maximum number of event source mappings to return.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCmdlet">
            <summary>
            Returns information about the function or function version, with a link to download
            the deployment package that's valid for 10 minutes. If you specify a function version,
            only details that are specific to that version are returned.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetFunctionRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version or alias to get details about a published version of the function.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConfigurationCmdlet">
            <summary>
            Returns the version-specific settings of a Lambda function or version. The output
            includes only options that can vary between versions of a function. To modify these
            settings, use <a>UpdateFunctionConfiguration</a>.
             
              
            <para>
            To get all of a function's details, including function-level settings, use <a>GetFunction</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConfigurationCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetFunctionConfigurationRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConfigurationCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version or alias to get details about a published version of the function.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet">
            <summary>
            Returns a list of Lambda functions, with the version-specific configuration of each.
             
              
            <para>
            Set <code>FunctionVersion</code> to <code>ALL</code> to include all published versions
            of each function in addition to the unpublished version. To get more information about
            a function or version, use <a>GetFunction</a>.
            </para><br/><br/>This operation automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet.FunctionVersion">
            <summary>
            <para>
            <para>Set to <code>ALL</code> to include entries for all published versions of each function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet.MasterRegion">
            <summary>
            <para>
            <para>For Lambda@Edge functions, the AWS Region of the master function. For example, <code>us-east-2</code>
            or <code>ALL</code>. If specified, you must set <code>FunctionVersion</code> to <code>ALL</code>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet.Marker">
            <summary>
            <para>
            <para>Specify the pagination token that's returned by a previous request to retrieve the
            next page of results.</para>
            </para>
            <para>
            <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call.
            <br/>In order to manually control output pagination, assign $null, for the first call, and the value of $AWSHistory.LastServiceResponse.NextMarker, for subsequent calls, to this parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet.MaxItem">
            <summary>
            <para>
            <para>Specify a value between 1 and 50 to limit the number of functions in the response.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet">
            <summary>
            Lists <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layers</a> and shows information about the latest version of each. Specify
            a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime
            identifier</a> to list only layers that indicate that they're compatible with that
            runtime.<br/><br/>This operation automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet.CompatibleRuntime">
            <summary>
            <para>
            <para>A runtime identifier. For example, <code>go1.x</code>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet.Marker">
            <summary>
            <para>
            <para>A pagination token returned by a previous call.</para>
            </para>
            <para>
            <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call.
            <br/>In order to manually control output pagination, assign $null, for the first call, and the value of $AWSHistory.LastServiceResponse.NextMarker, for subsequent calls, to this parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet.MaxItem">
            <summary>
            <para>
            <para>The maximum number of layers to return.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionCmdlet">
            <summary>
            Returns information about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layer</a>, with a link to download the layer archive that's valid for 10 minutes.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionCmdlet.LayerName">
            <summary>
            <para>
            <para>The name or Amazon Resource Name (ARN) of the layer.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionCmdlet.VersionNumber">
            <summary>
            <para>
            <para>The version number.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionByArnCmdlet">
            <summary>
            Returns information about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layer</a>, with a link to download the layer archive that's valid for 10 minutes.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionByArnCmdlet.Arn">
            <summary>
            <para>
            <para>The ARN of the layer version.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet">
            <summary>
            Lists the versions of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layer</a>. Versions that have been deleted aren't listed. Specify a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime
            identifier</a> to list only versions that indicate that they're compatible with that
            runtime.<br/><br/>This operation automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet.CompatibleRuntime">
            <summary>
            <para>
            <para>A runtime identifier. For example, <code>go1.x</code>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet.LayerName">
            <summary>
            <para>
            <para>The name or Amazon Resource Name (ARN) of the layer.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet.Marker">
            <summary>
            <para>
            <para>A pagination token returned by a previous call.</para>
            </para>
            <para>
            <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call.
            <br/>In order to manually control output pagination, assign $null, for the first call, and the value of $AWSHistory.LastServiceResponse.NextMarker, for subsequent calls, to this parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet.MaxItem">
            <summary>
            <para>
            <para>The maximum number of versions to return.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionPolicyCmdlet">
            <summary>
            Returns the permission policy for a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layer</a>. For more information, see <a>AddLayerVersionPermission</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionPolicyCmdlet.LayerName">
            <summary>
            <para>
            <para>The name or Amazon Resource Name (ARN) of the layer.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionPolicyCmdlet.VersionNumber">
            <summary>
            <para>
            <para>The version number.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMPolicyCmdlet">
            <summary>
            Returns the <a href="https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html">resource-based
            IAM policy</a> for a function, version, or alias.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMPolicyCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetPolicyRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMPolicyCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version or alias to get the policy for that resource.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMResourceTagCmdlet">
            <summary>
            Returns a function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>.
            You can also view tags with <a>GetFunction</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMResourceTagCmdlet.Resource">
            <summary>
            <para>
            <para>The function's Amazon Resource Name (ARN).</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMVersionsByFunctionCmdlet">
            <summary>
            Returns a list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">versions</a>,
            with the version-specific configuration of each.<br/><br/>This operation automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMVersionsByFunctionCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.ListVersionsByFunctionRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMVersionsByFunctionCmdlet.Marker">
            <summary>
            <para>
            <para>Specify the pagination token that's returned by a previous request to retrieve the
            next page of results.</para>
            </para>
            <para>
            <br/><b>Note:</b> This parameter is only used if you are manually controlling output pagination of the service API call.
            <br/>In order to manually control output pagination, assign $null, for the first call, and the value of $AWSHistory.LastServiceResponse.NextMarker, for subsequent calls, to this parameter.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMVersionsByFunctionCmdlet.MaxItem">
            <summary>
            <para>
            <para>Limit the number of versions that are returned.</para>
            </para>
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.NewLMAliasCmdlet">
            <summary>
            Creates an <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>
            for a Lambda function version. Use aliases to provide clients with a function identifier
            that you can update to invoke a different version.
             
              
            <para>
            You can also map an alias to split invocation requests between two versions. Use the
            <code>RoutingConfig</code> parameter to specify a second version and the percentage
            of invocation requests that it receives.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMAliasCmdlet.RoutingConfig_AdditionalVersionWeight">
            <summary>
            <para>
            <para>The name of the second alias, and the percentage of traffic that's routed to it.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMAliasCmdlet.Description">
            <summary>
            <para>
            <para>A description of the alias.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMAliasCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.CreateAliasRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMAliasCmdlet.FunctionVersion">
            <summary>
            <para>
            <para>The function version that the alias invokes.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMAliasCmdlet.Name">
            <summary>
            <para>
            <para>The name of the alias.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMAliasCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet">
            <summary>
            Creates a mapping between an event source and an AWS Lambda function. Lambda reads
            items from the event source and triggers the function.
             
              
            <para>
            For details about each event source type, see the following topics.
            </para><ul><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html">Using AWS
            Lambda with Amazon Kinesis</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html">Using AWS Lambda
            with Amazon SQS</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html">Using AWS Lambda
            with Amazon DynamoDB</a></para></li></ul>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.BatchSize">
            <summary>
            <para>
            <para>The maximum number of items to retrieve in a single batch.</para><ul><li><para><b>Amazon Kinesis</b> - Default 100. Max 10,000.</para></li><li><para><b>Amazon DynamoDB Streams</b> - Default 100. Max 1,000.</para></li><li><para><b>Amazon Simple Queue Service</b> - Default 10. Max 10.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.Enabled">
            <summary>
            <para>
            <para>Disables the event source mapping to pause polling and invocation.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.EventSourceArn">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the event source.</para><ul><li><para><b>Amazon Kinesis</b> - The ARN of the data stream or a stream consumer.</para></li><li><para><b>Amazon DynamoDB Streams</b> - The ARN of the stream.</para></li><li><para><b>Amazon Simple Queue Service</b> - The ARN of the queue.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.CreateEventSourceMappingRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.StartingPosition">
            <summary>
            <para>
            <para>The position in a stream from which to start reading. Required for Amazon Kinesis
            and Amazon DynamoDB Streams sources. <code>AT_TIMESTAMP</code> is only supported for
            Amazon Kinesis streams.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.StartingPositionTimestamp">
            <summary>
            <para>
            <para>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from
            which to start reading.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet">
            <summary>
            Creates an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layer</a> from a ZIP archive. Each time you call <code>PublishLayerVersion</code>
            with the same version name, a new version is created.
             
              
            <para>
            Add layers to your function with <a>CreateFunction</a> or <a>UpdateFunctionConfiguration</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.CompatibleRuntime">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.Description">
            <summary>
            <para>
            <para>The description of the version.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.LayerName">
            <summary>
            <para>
            <para>The name or Amazon Resource Name (ARN) of the layer.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.LicenseInfo">
            <summary>
            <para>
            <para>The layer's software license. It can be any of the following:</para><ul><li><para>An <a href="https://spdx.org/licenses/">SPDX license identifier</a>. For example,
            <code>MIT</code>.</para></li><li><para>The URL of a license hosted on the internet. For example, <code>https://opensource.org/licenses/MIT</code>.</para></li><li><para>The full text of the license.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.Content_S3Bucket">
            <summary>
            <para>
            <para>The Amazon S3 bucket of the layer archive.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.Content_S3Key">
            <summary>
            <para>
            <para>The Amazon S3 key of the layer archive.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.Content_S3ObjectVersion">
            <summary>
            <para>
            <para>For versioned objects, the version of the layer archive object to use.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.Content_ZipFile">
            <summary>
            <para>
            <para>The base64-encoded contents of the layer archive. AWS SDK and AWS CLI clients handle
            the encoding for you.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.PublishLMVersionCmdlet">
            <summary>
            Creates a <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">version</a>
            from the current code and configuration of a function. Use versions to create a snapshot
            of your function code and configuration that doesn't change.
             
              
            <para>
            AWS Lambda doesn't publish a version if the function's configuration and code haven't
            changed since the last version. Use <a>UpdateFunctionCode</a> or <a>UpdateFunctionConfiguration</a>
            to update the function before publishing a version.
            </para><para>
            Clients can invoke versions directly or with an alias. To create an alias, use <a>CreateAlias</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMVersionCmdlet.CodeSha256">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMVersionCmdlet.Description">
            <summary>
            <para>
            <para>A description for the version to override the description in the function configuration.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMVersionCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.PublishVersionRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMVersionCmdlet.RevisionId">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMVersionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.RemoveLMAliasCmdlet">
            <summary>
            Deletes a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMAliasCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.DeleteAliasRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMAliasCmdlet.Name">
            <summary>
            <para>
            <para>The name of the alias.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMAliasCmdlet.PassThru">
            <summary>
            Returns the value passed to the FunctionName parameter.
            By default, this cmdlet does not generate any output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMAliasCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.RemoveLMEventSourceMappingCmdlet">
            <summary>
            Deletes an <a href="https://docs.aws.amazon.com/lambda/latest/dg/intro-invocation-modes.html">event
            source mapping</a>. You can get the identifier of a mapping from the output of <a>ListEventSourceMappings</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMEventSourceMappingCmdlet.UUID">
            <summary>
            <para>
            <para>The identifier of the event source mapping.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMEventSourceMappingCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCmdlet">
            <summary>
            Deletes a Lambda function. To delete a specific function version, use the <code>Qualifier</code>
            parameter. Otherwise, all versions and aliases are deleted.
             
              
            <para>
            To delete Lambda event source mappings that invoke a function, use <a>DeleteEventSourceMapping</a>.
            For AWS services and resources that invoke your function directly, delete the trigger
            in the service where you originally configured it.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.DeleteFunctionRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version to delete. You can't delete a version that's referenced by an alias.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCmdlet.PassThru">
            <summary>
            Returns the value passed to the FunctionName parameter.
            By default, this cmdlet does not generate any output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionConcurrencyCmdlet">
            <summary>
            Removes a concurrent execution limit from a function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionConcurrencyCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.DeleteFunctionConcurrencyRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionConcurrencyCmdlet.PassThru">
            <summary>
            Returns the value passed to the FunctionName parameter.
            By default, this cmdlet does not generate any output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionConcurrencyCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionCmdlet">
            <summary>
            Deletes a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layer</a>. Deleted versions can no longer be viewed or added to functions.
            To avoid breaking functions, a copy of the version remains in Lambda until no functions
            refer to it.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionCmdlet.LayerName">
            <summary>
            <para>
            <para>The name or Amazon Resource Name (ARN) of the layer.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionCmdlet.VersionNumber">
            <summary>
            <para>
            <para>The version number.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionCmdlet.PassThru">
            <summary>
            Returns the value passed to the LayerName parameter.
            By default, this cmdlet does not generate any output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionPermissionCmdlet">
            <summary>
            Removes a statement from the permissions policy for a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">AWS
            Lambda layer</a>. For more information, see <a>AddLayerVersionPermission</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionPermissionCmdlet.LayerName">
            <summary>
            <para>
            <para>The name or Amazon Resource Name (ARN) of the layer.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionPermissionCmdlet.RevisionId">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionPermissionCmdlet.StatementId">
            <summary>
            <para>
            <para>The identifier that was specified when the statement was added.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionPermissionCmdlet.VersionNumber">
            <summary>
            <para>
            <para>The version number.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionPermissionCmdlet.PassThru">
            <summary>
            Returns the value passed to the LayerName parameter.
            By default, this cmdlet does not generate any output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionPermissionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.RemoveLMPermissionCmdlet">
            <summary>
            Revokes function-use permission from an AWS service or another account. You can get
            the ID of the statement from the output of <a>GetPolicy</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMPermissionCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.RemovePermissionRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMPermissionCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version or alias to remove permissions from a published version of the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMPermissionCmdlet.RevisionId">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMPermissionCmdlet.StatementId">
            <summary>
            <para>
            <para>Statement ID of the permission to remove.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMPermissionCmdlet.PassThru">
            <summary>
            Returns the value passed to the FunctionName parameter.
            By default, this cmdlet does not generate any output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMPermissionCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.RemoveLMResourceTagCmdlet">
            <summary>
            Removes <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>
            from a function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMResourceTagCmdlet.Resource">
            <summary>
            <para>
            <para>The function's Amazon Resource Name (ARN).</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMResourceTagCmdlet.TagKey">
            <summary>
            <para>
            <para>A list of tag keys to remove from the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMResourceTagCmdlet.PassThru">
            <summary>
            Returns the value passed to the TagKey parameter.
            By default, this cmdlet does not generate any output.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMResourceTagCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet">
            <summary>
            Updates the configuration of a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html">alias</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.RoutingConfig_AdditionalVersionWeight">
            <summary>
            <para>
            <para>The name of the second alias, and the percentage of traffic that's routed to it.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.Description">
            <summary>
            <para>
            <para>A description of the alias.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.UpdateAliasRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.FunctionVersion">
            <summary>
            <para>
            <para>The function version that the alias invokes.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.Name">
            <summary>
            <para>
            <para>The name of the alias.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.RevisionId">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet">
            <summary>
            Updates an event source mapping. You can change the function that AWS Lambda invokes,
            or pause invocation and resume later from the same location.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.BatchSize">
            <summary>
            <para>
            <para>The maximum number of items to retrieve in a single batch.</para><ul><li><para><b>Amazon Kinesis</b> - Default 100. Max 10,000.</para></li><li><para><b>Amazon DynamoDB Streams</b> - Default 100. Max 1,000.</para></li><li><para><b>Amazon Simple Queue Service</b> - Default 10. Max 10.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.Enabled">
            <summary>
            <para>
            <para>Disables the event source mapping to pause polling and invocation.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.UpdateEventSourceMappingRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.UUID">
            <summary>
            <para>
            <para>The identifier of the event source mapping.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet">
            <summary>
            Modify the version-specific settings of a Lambda function.
             
              
            <para>
            These settings can vary between versions of a function and are locked when you publish
            a version. You can't modify the configuration of a published version, only the unpublished
            version.
            </para><para>
            To configure function concurrency, use <a>PutFunctionConcurrency</a>. To grant invoke
            permissions to an account or AWS service, use <a>AddPermission</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Description">
            <summary>
            <para>
            <para>A description of the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.UpdateFunctionConfigurationRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Handler">
            <summary>
            <para>
            <para>The name of the method within your code that Lambda calls to execute your function.
            The format includes the file name. It can also include namespaces and other qualifiers,
            depending on the runtime. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/programming-model-v2.html">Programming
            Model</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.KMSKeyArn">
            <summary>
            <para>
            <para>The ARN of the AWS Key Management Service (AWS KMS) key that's used to encrypt your
            function's environment variables. If it's not provided, AWS Lambda uses a default
            service key.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Layer">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.MemorySize">
            <summary>
            <para>
            <para>The amount of memory that your function has access to. Increasing the function's memory
            also increases its CPU allocation. The default value is 128 MB. The value must be
            a multiple of 64 MB.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.TracingConfig_Mode">
            <summary>
            <para>
            <para>The tracing mode.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.RevisionId">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Role">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the function's execution role.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Runtime">
            <summary>
            <para>
            <para>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.VpcConfig_SecurityGroupId">
            <summary>
            <para>
            <para>A list of VPC security groups IDs.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.VpcConfig_SubnetId">
            <summary>
            <para>
            <para>A list of VPC subnet IDs.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.DeadLetterConfig_TargetArn">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Timeout">
            <summary>
            <para>
            <para>The amount of time that Lambda allows a function to run before stopping it. The default
            is 3 seconds. The maximum allowed value is 900 seconds.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Environment_Variable">
            <summary>
            <para>
            <para>Environment variable key-value pairs.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionConcurrencyCmdlet">
            <summary>
            Sets the maximum number of simultaneous executions for a function, and reserves capacity
            for that concurrency level.
             
              
            <para>
            Concurrency settings apply to the function as a whole, including all published versions
            and the unpublished version. Reserving concurrency both ensures that your function
            has capacity to process the specified number of events simultaneously, and prevents
            it from scaling beyond that level. Use <a>GetFunction</a> to see the current setting
            for a function.
            </para><para>
            Use <a>GetAccountSettings</a> to see your regional concurrency limit. You can reserve
            concurrency for as many functions as you like, as long as you leave at least 100 simultaneous
            executions unreserved for functions that aren't configured with a per-function limit.
            For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html">Managing
            Concurrency</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionConcurrencyCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.PutFunctionConcurrencyRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionConcurrencyCmdlet.ReservedConcurrentExecution">
            <summary>
            <para>
            <para>The number of simultaneous executions to reserve for the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionConcurrencyCmdlet.Force">
            <summary>
            This parameter overrides confirmation prompts to force
            the cmdlet to continue its operation. This parameter should always
            be used with caution.
            </summary>
        </member>
    </members>
</doc>