AWS.Tools.Lambda.XML

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>AWS.Tools.Lambda</name>
    </assembly>
    <members>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet">
            <summary>
            Creates a Lambda function. To create a function, you need a <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html">deployment
            package</a> and an <a href="https://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role">execution
            role</a>. The deployment package is a .zip file archive or container image that contains
            your function code. The execution role grants the function permission to use Amazon
            Web Services, such as Amazon CloudWatch Logs for log streaming and X-Ray for request
            tracing.
             
              
            <para>
            If the deployment package is a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html">container
            image</a>, then you set the package type to <code>Image</code>. For a container image,
            the code property must include the URI of a container image in the Amazon ECR registry.
            You do not need to specify the handler and runtime properties.
            </para><para>
            If the deployment package is a <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip">.zip
            file archive</a>, then you set the package type to <code>Zip</code>. For a .zip file
            archive, the code property specifies the location of the .zip file. You must also
            specify the handler and runtime properties. The code in the deployment package must
            be compatible with the target instruction set architecture of the function (<code>x86-64</code>
            or <code>arm64</code>). If you do not specify the architecture, then the default value
            is <code>x86-64</code>.
            </para><para>
            When you create a function, Lambda provisions an instance of the function and its
            supporting resources. If your function connects to a VPC, this process can take a
            minute or so. During this time, you can't invoke or modify the function. The <code>State</code>,
            <code>StateReason</code>, and <code>StateReasonCode</code> fields in the response
            from <a>GetFunctionConfiguration</a> indicate when the function is ready to invoke.
            For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html">Lambda
            function states</a>.
            </para><para>
            A function has an unpublished version, and can have published versions and aliases.
            The unpublished version changes when you update your function's code and configuration.
            A published version is a snapshot of your function code and configuration that can't
            be changed. An alias is a named resource that maps to a version, and can be changed
            to map to a different version. Use the <code>Publish</code> parameter to create version
            <code>1</code> of your function from its initial configuration.
            </para><para>
            The other parameters let you configure version-specific and function-level settings.
            You can modify version-specific settings later with <a>UpdateFunctionConfiguration</a>.
            Function-level settings apply to both the unpublished and published versions of the
            function, and include tags (<a>TagResource</a>) and per-function concurrency limits
            (<a>PutFunctionConcurrency</a>).
            </para><para>
            You can use code signing if your deployment package is a .zip file archive. To enable
            code signing for this function, specify the ARN of a code-signing configuration. When
            a user attempts to deploy a code package with <a>UpdateFunctionCode</a>, Lambda checks
            that the code package has a valid signature from a trusted publisher. The code-signing
            configuration includes set of signing profiles, which define the trusted publishers
            for this function.
            </para><para>
            If another Amazon Web Services account or an Amazon Web Service invokes your function,
            use <a>AddPermission</a> to grant permission by creating a resource-based Identity
            and Access Management (IAM) policy. You can grant permissions at the function level,
            on a version, or on an alias.
            </para><para>
            To invoke your function directly, use <a>Invoke</a>. To invoke your function in response
            to events in other Amazon Web Services, create an event source mapping (<a>CreateEventSourceMapping</a>),
            or configure a function trigger in the other service. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-invocation.html">Invoking
            Lambda functions</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.ZipFilename">
            <summary>
            <para>
            This parameter is obsolete and will be removed in a future version. Use 'Code_ZipFile' instead.
            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.Publish">
            <summary>
            <para>
            This parameter is obsolete. Use PublishVersion instead.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.SnapStart_ApplyOn">
            <summary>
            <para>
            <para>Set to <code>PublishedVersions</code> to create a snapshot of the initialized execution
            environment when you publish a function version.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Architecture">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.CodeSigningConfigArn">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.ImageConfig_Command">
            <summary>
            <para>
            <para>Specifies parameters that you want to pass in with ENTRYPOINT.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Description">
            <summary>
            <para>
            <para>A description of the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.ImageConfig_EntryPoint">
            <summary>
            <para>
            <para>Specifies the entry point to their application, which is typically the location of
            the runtime executable.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.FileSystemConfig">
            <summary>
            <para>
            <para>Connection settings for an Amazon EFS file system.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.CreateFunctionRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Handler">
            <summary>
            <para>
            <para>The name of the method within your code that Lambda calls to run 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/foundation-progmodel.html">Lambda
            programming model</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Code_ImageUri">
            <summary>
            <para>
            <para>URI of a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html">container
            image</a> in the Amazon ECR registry.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.ImageConfig_IsCommandSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.ImageConfig.Command" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.ImageConfig_IsEntryPointSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.ImageConfig.EntryPoint" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.VpcConfig_IsSecurityGroupIdsSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.VpcConfig.SecurityGroupIds" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.VpcConfig_IsSubnetIdsSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.VpcConfig.SubnetIds" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Environment_IsVariablesSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.Environment.Variables" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.KMSKeyArn">
            <summary>
            <para>
            <para>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt
            your function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption">environment
            variables</a>. When <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html">Lambda
            SnapStart</a> is activated, this key is also used to encrypt your function's snapshot.
            If you don't provide a customer managed key, Lambda uses a default service key.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.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.PublishLMFunctionCmdlet.MemorySize">
            <summary>
            <para>
            <para>The amount of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console">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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.TracingConfig_Mode">
            <summary>
            <para>
            <para>The tracing mode.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.PackageType">
            <summary>
            <para>
            <para>The type of deployment package. Set to <code>Image</code> for container image and
            set to <code>Zip</code> for .zip file archive.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.PublishVersion">
            <summary>
            <para>
            <para>Set to true to publish the first version of the function during creation.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.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.PublishLMFunctionCmdlet.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>.
            Runtime is required if the deployment package is a .zip file archive.</para><para>The following list includes deprecated runtimes. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy">Runtime
            deprecation policy</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Code_S3Bucket">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Code_S3Key">
            <summary>
            <para>
            <para>The Amazon S3 key of the deployment package.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Code_S3ObjectVersion">
            <summary>
            <para>
            <para>For versioned objects, the version of the deployment package object to use.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.VpcConfig_SecurityGroupId">
            <summary>
            <para>
            <para>A list of VPC security group IDs.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.EphemeralStorage_Size">
            <summary>
            <para>
            <para>The size of the function's <code>/tmp</code> directory.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.VpcConfig_SubnetId">
            <summary>
            <para>
            <para>A list of VPC subnet IDs.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Tag">
            <summary>
            <para>
            <para>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>
            to apply to the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.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.PublishLMFunctionCmdlet.Timeout">
            <summary>
            <para>
            <para>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 more information,
            see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda
            execution environment</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Environment_Variable">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.ImageConfig_WorkingDirectory">
            <summary>
            <para>
            <para>Specifies the working directory.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Code_ZipFile">
            <summary>
            <para>
            <para>The base64-encoded contents of the deployment package. Amazon Web Services SDK and
            CLI clients handle the encoding for you.</para>
            </para>
            <para>The cmdlet will automatically convert the supplied parameter of type string, string[], System.IO.FileInfo or System.IO.Stream to byte[] before supplying it to the service.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.CreateFunctionResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.CreateFunctionResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMFunctionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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 a Lambda function's code. If code signing is enabled for the function, the
            code package must be signed by a trusted publisher. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html">Configuring
            code signing for Lambda</a>.
             
              
            <para>
            If the function's package type is <code>Image</code>, then you must specify the code
            package in <code>ImageUri</code> as the URI of a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html">container
            image</a> in the Amazon ECR registry.
            </para><para>
            If the function's package type is <code>Zip</code>, then you must specify the deployment
            package as a <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip">.zip
            file archive</a>. Enter the Amazon S3 bucket and key of the code .zip file location.
            You can also provide the function code inline using the <code>ZipFile</code> field.
            </para><para>
            The code in the deployment package must be compatible with the target instruction
            set architecture of the function (<code>x86-64</code> or <code>arm64</code>).
            </para><para>
            The function's code is locked when you publish a version. You can't modify the code
            of a published version, only the unpublished version.
            </para><note><para>
            For a function defined as a container image, Lambda resolves the image tag to an image
            digest. In Amazon ECR, if you update the image tag to a new image, Lambda does not
            automatically update the function.
            </para></note>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.ZipFilename">
            <summary>
            <para>
            This parameter is obsolete and will be removed in a future version. Use 'ZipFile' instead.
            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>
            <para>
            This parameter is obsolete. Use PublishVersion instead.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.Architecture">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.DryRun">
            <summary>
            <para>
            <para>Set to true to validate the request parameters and access permissions without modifying
            the function code.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.UpdateFunctionCodeRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.ImageUri">
            <summary>
            <para>
            <para>URI of a container image in the Amazon ECR registry. Do not use for a function defined
            with a .zip file archive.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.PublishVersion">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.RevisionId">
            <summary>
            <para>
            <para>Update the function only 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.UpdateLMFunctionCodeCmdlet.S3Bucket">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.S3Key">
            <summary>
            <para>
            <para>The Amazon S3 key of the deployment package. Use only with a function defined with
            a .zip file archive deployment package.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.S3ObjectVersion">
            <summary>
            <para>
            <para>For versioned objects, the version of the deployment package object to use.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.ZipFile">
            <summary>
            <para>
            <para>The base64-encoded contents of the deployment package. Amazon Web Services SDK and
            CLI clients handle the encoding for you. Use only with a function defined with a .zip
            file archive deployment package.</para>
            </para>
            <para>The cmdlet will automatically convert the supplied parameter of type string, string[], System.IO.FileInfo or System.IO.Stream to byte[] before supplying it to the service.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.UpdateFunctionCodeResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.UpdateFunctionCodeResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionCodeCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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">Lambda
            layer</a>. Use this action to grant layer usage permission to other accounts. You
            can grant permission to a single account, all accounts in an organization, or all
            Amazon Web Services accounts.
             
              
            <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 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. </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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.AddLayerVersionPermissionResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.AddLayerVersionPermissionResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMLayerVersionPermissionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the LayerName parameter.
            The -PassThru parameter is deprecated, use -Select '^LayerName' instead. This parameter will be removed in a future version.
            </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 Amazon Web Service, Amazon Web Services account, or Amazon Web Services
            organization permission to use a function. You can apply the policy at the function
            level, or specify a qualifier to restrict access to a single version or alias. If
            you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that
            version or alias to invoke the function. Note: Lambda does not support adding policies
            to version $LATEST.
             
              
            <para>
            To grant permission to another account, specify the account ID as the <code>Principal</code>.
            To grant permission to an organization defined in Organizations, specify the organization
            ID as the <code>PrincipalOrgID</code>. For Amazon Web Services, the principal is a
            domain-style identifier that the service defines, such as <code>s3.amazonaws.com</code>
            or <code>sns.amazonaws.com</code>. For Amazon Web Services, you can also specify the
            ARN of the associated resource as the <code>SourceArn</code>. If you grant permission
            to a service principal without specifying the source, other accounts could potentially
            configure resources in their account to invoke your Lambda function.
            </para><para>
            This operation adds a statement to a resource-based permissions policy for the function.
            For more information about function policies, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html">Using
            resource-based policies for Lambda</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 the invoker must supply.</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.FunctionUrlAuthType">
            <summary>
            <para>
            <para>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code>
            if you want to restrict access to authenticated 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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.Principal">
            <summary>
            <para>
            <para>The Amazon Web Service or Amazon Web Services 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.PrincipalOrgID">
            <summary>
            <para>
            <para>The identifier for your organization in Organizations. Use this to grant permissions
            to all the Amazon Web Services accounts under this organization.</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>Update the policy only 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 Amazon Web Service, the ID of the Amazon Web Services account that owns the resource.
            Use this together with <code>SourceArn</code> to ensure that the specified account
            owns the resource. It is possible for an Amazon S3 bucket to 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 Amazon Web Services, the ARN of the Amazon Web Services resource that invokes
            the function. For example, an Amazon S3 bucket or Amazon SNS topic.</para><para>Note that Lambda configures the comparison using the <code>StringLike</code> operator.</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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'Statement'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.AddPermissionResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.AddPermissionResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMPermissionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.TagResourceResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.AddLMResourceTagCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the Resource parameter.
            The -PassThru parameter is deprecated, use -Select '^Resource' instead. This parameter will be removed in a future version.
            </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 Amazon Web Services Region.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAccountSettingCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetAccountSettingsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetAccountSettingsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </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/configuration-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="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetAliasResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetAliasResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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/configuration-aliases.html">aliases</a>
            for a Lambda function.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet.MaxItem">
            <summary>
            <para>
            <para>Limit the number of aliases returned.</para>
            </para>
            <para>
            <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet.
            <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call.
            <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'Aliases'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListAliasesResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListAliasesResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMAliasListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigCmdlet">
            <summary>
            Returns information about the specified code signing configuration.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigCmdlet.CodeSigningConfigArn">
            <summary>
            <para>
            <para>The The Amazon Resource Name (ARN) of the code signing configuration. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetCodeSigningConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetCodeSigningConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the CodeSigningConfigArn parameter.
            The -PassThru parameter is deprecated, use -Select '^CodeSigningConfigArn' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigListCmdlet">
            <summary>
            Returns a list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuring-codesigning.html">code
            signing configurations</a>. A request returns up to 10,000 configurations per call.
            You can use the <code>MaxItems</code> parameter to return fewer configurations per
            call.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigListCmdlet.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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigListCmdlet.MaxItem">
            <summary>
            <para>
            <para>Maximum number of items to return.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListCodeSigningConfigsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListCodeSigningConfigsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMCodeSigningConfigListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </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="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetEventSourceMappingResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetEventSourceMappingResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the UUID parameter.
            The -PassThru parameter is deprecated, use -Select '^UUID' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet">
            <summary>
            Lists event source mappings. Specify an <code>EventSourceArn</code> to show only event
            source mappings for a single event source.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </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><li><para><b>Amazon Managed Streaming for Apache Kafka</b> – The ARN of the cluster.</para></li><li><para><b>Amazon MQ</b> – The ARN of the broker.</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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet.MaxItem">
            <summary>
            <para>
            <para>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.</para>
            </para>
            <para>
            <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet.
            <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call.
            <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'EventSourceMappings'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListEventSourceMappingsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListEventSourceMappingsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMEventSourceMappingListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </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="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetFunctionResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetFunctionResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCodeSigningConfigCmdlet">
            <summary>
            Returns the code signing configuration for the specified function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCodeSigningConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetFunctionCodeSigningConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCodeSigningConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetFunctionCodeSigningConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetFunctionCodeSigningConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionCodeSigningConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConcurrencyCmdlet">
            <summary>
            Returns details about the reserved concurrency configuration for a function. To set
            a concurrency limit for a function, use <a>PutFunctionConcurrency</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConcurrencyCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetFunctionConcurrencyRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConcurrencyCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'ReservedConcurrentExecutions'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetFunctionConcurrencyResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetFunctionConcurrencyResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConcurrencyCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConfigurationCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetFunctionConfigurationResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetFunctionConfigurationResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionConfigurationCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigCmdlet">
            <summary>
            Retrieves the configuration for asynchronous invocation for a function, version, or
            alias.
             
              
            <para>
            To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetFunctionEventInvokeConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>A version number or alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetFunctionEventInvokeConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetFunctionEventInvokeConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigListCmdlet">
            <summary>
            Retrieves a list of configurations for asynchronous invocation for a function.
             
              
            <para>
            To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.
            </para><br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigListCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.ListFunctionEventInvokeConfigsRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigListCmdlet.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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigListCmdlet.MaxItem">
            <summary>
            <para>
            <para>The maximum number of configurations to return.</para>
            </para>
            <para>
            <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet.
            <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call.
            <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'FunctionEventInvokeConfigs'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListFunctionEventInvokeConfigsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListFunctionEventInvokeConfigsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigListCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionEventInvokeConfigListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet">
            <summary>
            Returns a list of Lambda functions, with the version-specific configuration of each.
            Lambda returns up to 50 functions per call.
             
              
            <para>
            Set <code>FunctionVersion</code> to <code>ALL</code> to include all published versions
            of each function in addition to the unpublished version.
            </para><note><para>
            The <code>ListFunctions</code> operation returns a subset of the <a>FunctionConfiguration</a>
            fields. To get the additional fields (State, StateReasonCode, StateReason, LastUpdateStatus,
            LastUpdateStatusReason, LastUpdateStatusReasonCode, RuntimeVersionConfig) for a function
            or version, use <a>GetFunction</a>.
            </para></note><br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </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 Amazon Web Services Region of the master function.
            For example, <code>us-east-1</code> filters the list of functions to include only
            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>.</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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet.MaxItem">
            <summary>
            <para>
            <para>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.</para>
            </para>
            <para>
            <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet.
            <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call.
            <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'Functions'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListFunctionsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListFunctionsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionsByCodeSigningConfigListCmdlet">
            <summary>
            List the functions that use the specified code signing configuration. You can use
            this method prior to deleting a code signing configuration, to verify that no functions
            are using it.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionsByCodeSigningConfigListCmdlet.CodeSigningConfigArn">
            <summary>
            <para>
            <para>The The Amazon Resource Name (ARN) of the code signing configuration.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionsByCodeSigningConfigListCmdlet.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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionsByCodeSigningConfigListCmdlet.MaxItem">
            <summary>
            <para>
            <para>Maximum number of items to return.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionsByCodeSigningConfigListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListFunctionsByCodeSigningConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListFunctionsByCodeSigningConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionsByCodeSigningConfigListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigCmdlet">
            <summary>
            Returns details about a Lambda function URL.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetFunctionUrlConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>The alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetFunctionUrlConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetFunctionUrlConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigListCmdlet">
            <summary>
            Returns a list of Lambda function URLs for the specified function.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigListCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.ListFunctionUrlConfigsRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigListCmdlet.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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigListCmdlet.MaxItem">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'FunctionUrlConfigs'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListFunctionUrlConfigsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListFunctionUrlConfigsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigListCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMFunctionUrlConfigListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet">
            <summary>
            Lists <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-layers.html">Lambda
            layers</a> and shows information about the latest version of each. Specify a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime
            identifier</a> to list only layers that indicate that they're compatible with that
            runtime. Specify a compatible architecture to include only layers that are compatible
            with that <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction
            set architecture</a>.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet.CompatibleArchitecture">
            <summary>
            <para>
            <para>The compatible <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction
            set architecture</a>.</para>
            </para>
            </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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet.MaxItem">
            <summary>
            <para>
            <para>The maximum number of layers to return.</para>
            </para>
            <para>
            <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet.
            <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call.
            <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'Layers'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListLayersResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListLayersResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the CompatibleRuntime parameter.
            The -PassThru parameter is deprecated, use -Select '^CompatibleRuntime' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </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">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="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetLayerVersionResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetLayerVersionResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </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">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="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionByArnCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetLayerVersionByArnResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetLayerVersionByArnResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionByArnCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the Arn parameter.
            The -PassThru parameter is deprecated, use -Select '^Arn' instead. This parameter will be removed in a future version.
            </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">Lambda
            layer</a>. Versions that have been deleted aren't listed. Specify a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">runtime
            identifier</a> to list only versions that indicate that they're compatible with that
            runtime. Specify a compatible architecture to include only layer versions that are
            compatible with that architecture.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet.CompatibleArchitecture">
            <summary>
            <para>
            <para>The compatible <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction
            set architecture</a>.</para>
            </para>
            </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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet.MaxItem">
            <summary>
            <para>
            <para>The maximum number of versions to return.</para>
            </para>
            <para>
            <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet.
            <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call.
            <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'LayerVersions'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListLayerVersionsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListLayerVersionsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </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">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="P:Amazon.PowerShell.Cmdlets.LM.GetLMLayerVersionPolicyCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetLayerVersionPolicyResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetLayerVersionPolicyResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </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="P:Amazon.PowerShell.Cmdlets.LM.GetLMPolicyCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetPolicyResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetPolicyResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMPolicyCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigCmdlet">
            <summary>
            Retrieves the provisioned concurrency configuration for a function's alias or version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetProvisionedConcurrencyConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>The version number or alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetProvisionedConcurrencyConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetProvisionedConcurrencyConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigListCmdlet">
            <summary>
            Retrieves a list of provisioned concurrency configurations for a function.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigListCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.ListProvisionedConcurrencyConfigsRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigListCmdlet.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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigListCmdlet.MaxItem">
            <summary>
            <para>
            <para>Specify a number to limit the number of configurations returned.</para>
            </para>
            <para>
            <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet.
            <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call.
            <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigListCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'ProvisionedConcurrencyConfigs'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListProvisionedConcurrencyConfigsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListProvisionedConcurrencyConfigsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigListCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMProvisionedConcurrencyConfigListCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </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). Note: Lambda does not support adding tags
            to aliases or versions.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMResourceTagCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'Tags'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListTagsResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListTagsResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMResourceTagCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the Resource parameter.
            The -PassThru parameter is deprecated, use -Select '^Resource' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.GetLMRuntimeManagementConfigCmdlet">
            <summary>
            Retrieves the runtime management configuration for a function's version. If the runtime
            update mode is <b>Manual</b>, this includes the ARN of the runtime version and the
            runtime update mode. If the runtime update mode is <b>Auto</b> or <b>Function update</b>,
            this includes the runtime update mode and <code>null</code> is returned for the ARN.
            For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html">Runtime
            updates</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMRuntimeManagementConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.GetRuntimeManagementConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMRuntimeManagementConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version of the function. This can be <code>$LATEST</code> or a published
            version number. If no value is specified, the configuration for the <code>$LATEST</code>
            version is returned.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMRuntimeManagementConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.GetRuntimeManagementConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.GetRuntimeManagementConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMRuntimeManagementConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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. Lambda returns up to 50 versions
            per call.<br/><br/>This cmdlet automatically pages all available results to the pipeline - parameters related to iteration are only needed if you want to manually control the paginated output. To disable autopagination, use -NoAutoIteration.
            </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, use '-Marker $null' for the first call and '-Marker $AWSHistory.LastServiceResponse.NextMarker' for subsequent calls.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMVersionsByFunctionCmdlet.MaxItem">
            <summary>
            <para>
            <para>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.</para>
            </para>
            <para>
            <br/><b>Note:</b> In AWSPowerShell and AWSPowerShell.NetCore this parameter is used to limit the total number of items returned by the cmdlet.
            <br/>In AWS.Tools this parameter is simply passed to the service to specify how many items should be returned by each service call.
            <br/>Pipe the output of this cmdlet into Select-Object -First to terminate retrieving data pages early and control the number of items returned.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMVersionsByFunctionCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'Versions'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.ListVersionsByFunctionResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.ListVersionsByFunctionResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMVersionsByFunctionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.GetLMVersionsByFunctionCmdlet.NoAutoIteration">
            <summary>
            By default the cmdlet will auto-iterate and retrieve all results to the pipeline by performing multiple
            service calls. If set, the cmdlet will retrieve only the next 'page' of results using the value of Marker
            as the start point.
            </summary>
        </member>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet">
            <summary>
            Invokes a Lambda function. You can invoke a function synchronously (and wait for the
            response), or asynchronously. To invoke a function asynchronously, set <code>InvocationType</code>
            to <code>Event</code>.
             
              
            <para>
            For <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-sync.html">synchronous
            invocation</a>, details about the function response, including errors, are included
            in the response body and headers. For either invocation type, you can find more information
            in the <a href="https://docs.aws.amazon.com/lambda/latest/dg/monitoring-functions.html">execution
            log</a> and <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-x-ray.html">trace</a>.
            </para><para>
            When an error occurs, your function may be invoked multiple times. Retry behavior
            varies by error type, client, event source, and invocation type. For example, if you
            invoke a function asynchronously and it returns an error, Lambda executes the function
            up to two more times. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-retries.html">Error
            handling and automatic retries in Lambda</a>.
            </para><para>
            For <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html">asynchronous
            invocation</a>, Lambda adds events to a queue before sending them to your function.
            If your function does not have enough capacity to keep up with the queue, events may
            be lost. Occasionally, your function may receive the same event multiple times, even
            if no error occurs. To retain events that were not processed, configure your function
            with a <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-dlq">dead-letter
            queue</a>.
            </para><para>
            The status code in the API response doesn't reflect function errors. Error codes are
            reserved for errors that prevent your function from executing, such as permissions
            errors, <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">quota</a>
            errors, or issues with your function's code and configuration. For example, Lambda
            returns <code>TooManyRequestsException</code> if running the function would cause
            you to exceed a concurrency limit at either the account level (<code>ConcurrentInvocationLimitExceeded</code>)
            or function level (<code>ReservedFunctionConcurrentInvocationLimitExceeded</code>).
            </para><para>
            For functions with a long timeout, your client might disconnect during synchronous
            invocation while it waits for a response. Configure your HTTP client, SDK, firewall,
            proxy, or operating system to allow for long connections with timeout or keep-alive
            settings.
            </para><para>
            This operation requires permission for the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/list_awslambda.html">lambda:InvokeFunction</a>
            action. For details on how to set up permissions for cross-account invocations, see
            <a href="https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html#permissions-resource-xaccountinvoke">Granting
            function access to other accounts</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.ClientContext">
            <summary>
            <para>
            When this property is set the ClientContextBase64
            property is also set with a base64-encoded string containing the contents of ClientContext.
            <para>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>.</para>
            </para>
            <para>If a value for this parameter is not specified the cmdlet will use a default value of '<b>{}</b>'.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.ClientContextBase64">
            <summary>
            <para>
            <para>Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the
            function in the context object.</para>
            </para>
            <para>The cmdlet will automatically convert the supplied parameter to Base64 before supplying to the service.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.InvokeRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.InvocationType">
            <summary>
            <para>
            <para>Choose from the following options.</para><ul><li><para><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.</para></li><li><para><code>Event</code> – Invoke the function asynchronously. Send events that fail multiple
            times to the function's dead-letter queue (if one is configured). The API response
            only includes a status code.</para></li><li><para><code>DryRun</code> – Validate parameter values and verify that the user or role
            has permission to invoke the function.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.LogType">
            <summary>
            <para>
            <para>Set to <code>Tail</code> to include the execution log in the response. Applies to
            synchronously invoked functions only.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.Payload">
            <summary>
            <para>
            When this property is set the PayloadStream
            property is also set with a MemoryStream containing the contents of Payload.
            <para>JSON that you want to provide to your cloud function as input.</para>
            </para>
            <para>If a value for this parameter is not specified the cmdlet will use a default value of '<b>{}</b>'.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.PayloadStream">
            <summary>
            <para>
            <para>The JSON that you want to provide to your Lambda function as input.</para><para>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>.</para>
            </para>
            <para>The cmdlet will automatically convert the supplied parameter of type string, string[], System.IO.FileInfo or System.IO.Stream to byte[] before supplying it to the service.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version or alias to invoke a published version of the function.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.InvokeResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.InvokeResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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>
            <important><para>
            For asynchronous function invocation, use <a>Invoke</a>.
            </para></important><para>
            Invokes a function asynchronously.
            </para><br/><br/>This operation is deprecated.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.InvokeAsyncRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet.InvokeArg">
            <summary>
            <para>
            When this property is set the InvokeArgsStream
            property is also set with a MemoryStream containing the contents InvokeArgs
            <para>JSON that you want to provide to your cloud function as input.</para>
            </para>
            <para>If a value for this parameter is not specified the cmdlet will use a default value of '<b>{}</b>'.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet.InvokeArgsStream">
            <summary>
            <para>
            <para>The JSON that you want to provide to your Lambda function as input.</para>
            </para>
            <para>The cmdlet accepts a parameter of type string, string[], System.IO.FileInfo or System.IO.Stream.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'Status'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.InvokeAsyncResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.InvokeAsyncResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.InvokeLMFunctionAsyncCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.NewLMAliasCmdlet">
            <summary>
            Creates an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-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 second version, 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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.CreateAliasResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.CreateAliasResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMAliasCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.NewLMCodeSigningConfigCmdlet">
            <summary>
            Creates a code signing configuration. A <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html">code
            signing configuration</a> defines a list of allowed signing profiles and defines the
            code-signing validation policy (action to be taken if deployment validation checks
            fail).
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMCodeSigningConfigCmdlet.Description">
            <summary>
            <para>
            <para>Descriptive name for this code signing configuration.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMCodeSigningConfigCmdlet.AllowedPublishers_SigningProfileVersionArn">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) for each of the signing profiles. A signing profile
            defines a trusted user who can sign a code package. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMCodeSigningConfigCmdlet.CodeSigningPolicies_UntrustedArtifactOnDeployment">
            <summary>
            <para>
            <para>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. </para><para>Default value: <code>Warn</code></para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMCodeSigningConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.CreateCodeSigningConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.CreateCodeSigningConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMCodeSigningConfigCmdlet.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 Lambda function. Lambda reads items
            from the event source and invokes the function.
             
              
            <para>
            For details about how to configure different event sources, see the following topics.
             
            </para><ul><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping">
            Amazon DynamoDB Streams</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping">
            Amazon Kinesis</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource">
            Amazon SQS</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping">
            Amazon MQ and RabbitMQ</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html"> Amazon MSK</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html"> Apache Kafka</a></para></li></ul><para>
            The following error handling options are available only for stream sources (DynamoDB
            and Kinesis):
            </para><ul><li><para><code>BisectBatchOnFunctionError</code> – If the function returns an error, split
            the batch in two and retry.
            </para></li><li><para><code>DestinationConfig</code> – Send discarded records to an Amazon SQS queue or
            Amazon SNS topic.
            </para></li><li><para><code>MaximumRecordAgeInSeconds</code> – Discard records older than the specified
            age. The default value is infinite (-1). When set to infinite (-1), failed records
            are retried until the record expires
            </para></li><li><para><code>MaximumRetryAttempts</code> – Discard records after the specified number of
            retries. The default value is infinite (-1). When set to infinite (-1), failed records
            are retried until the record expires.
            </para></li><li><para><code>ParallelizationFactor</code> – Process multiple batches from each shard concurrently.
            </para></li></ul><para>
            For information about which configuration parameters apply to each event source, see
            the following topics.
            </para><ul><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-ddb-params">
            Amazon DynamoDB Streams</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-params">
            Amazon Kinesis</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#services-sqs-params">
            Amazon SQS</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-params">
            Amazon MQ and RabbitMQ</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-parms">
            Amazon MSK</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-kafka-parms">
            Apache Kafka</a></para></li></ul>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.BatchSize">
            <summary>
            <para>
            <para>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).</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 10,000.</para></li><li><para><b>Amazon Simple Queue Service</b> – Default 10. For standard queues the max is 10,000.
            For FIFO queues the max is 10.</para></li><li><para><b>Amazon Managed Streaming for Apache Kafka</b> – Default 100. Max 10,000.</para></li><li><para><b>Self-managed Apache Kafka</b> – Default 100. Max 10,000.</para></li><li><para><b>Amazon MQ (ActiveMQ and RabbitMQ)</b> – Default 100. Max 10,000.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.BisectBatchOnFunctionError">
            <summary>
            <para>
            <para>(Streams only) If the function returns an error, split the batch in two and retry.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.DocumentDBEventSourceConfig_CollectionName">
            <summary>
            <para>
            <para> The name of the collection to consume within the database. If you do not specify
            a collection, Lambda consumes all collections. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.AmazonManagedKafkaEventSourceConfig_ConsumerGroupId">
            <summary>
            <para>
            <para>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 href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id">Customizable
            consumer group ID</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.SelfManagedKafkaEventSourceConfig_ConsumerGroupId">
            <summary>
            <para>
            <para>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 href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id">Customizable
            consumer group ID</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.DocumentDBEventSourceConfig_DatabaseName">
            <summary>
            <para>
            <para> The name of the database to consume within the DocumentDB cluster. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.OnFailure_Destination">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the destination resource.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.OnSuccess_Destination">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the destination resource.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.Enabled">
            <summary>
            <para>
            <para>When true, the event source mapping is active. When false, Lambda pauses polling and
            invocation.</para><para>Default: True</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.SelfManagedEventSource_Endpoint">
            <summary>
            <para>
            <para>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>.</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><li><para><b>Amazon Managed Streaming for Apache Kafka</b> – The ARN of the cluster.</para></li><li><para><b>Amazon MQ</b> – The ARN of the broker.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.FilterCriteria_Filter">
            <summary>
            <para>
            <para> A list of filters. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.DocumentDBEventSourceConfig_FullDocument">
            <summary>
            <para>
            <para> Determines what DocumentDB sends to your event stream during document update operations.
            If set to UpdateLookup, DocumentDB sends a delta describing the changes, along with
            a copy of the entire document. Otherwise, DocumentDB sends only a partial document
            that contains the changes. </para>
            </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.FunctionResponseType">
            <summary>
            <para>
            <para>(Streams and Amazon SQS) A list of current response type enums applied to the event
            source mapping.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.MaximumBatchingWindowInSecond">
            <summary>
            <para>
            <para>The maximum amount of time, in seconds, that Lambda spends gathering records before
            invoking the function. You can configure <code>MaximumBatchingWindowInSeconds</code>
            to any value from 0 seconds to 300 seconds in increments of seconds.</para><para>For streams and Amazon SQS event sources, the default batching window is 0 seconds.
            For Amazon MSK, Self-managed Apache Kafka, and Amazon MQ event sources, the default
            batching window is 500 ms. Note that because you can only change <code>MaximumBatchingWindowInSeconds</code>
            in increments of seconds, you cannot revert back to the 500 ms default batching window
            after you have changed it. To restore the default batching window, you must create
            a new event source mapping.</para><para>Related setting: For streams and Amazon SQS event sources, when you set <code>BatchSize</code>
            to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code>
            to at least 1.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.ScalingConfig_MaximumConcurrency">
            <summary>
            <para>
            <para>Limits the number of concurrent instances that the Amazon SQS event source can invoke.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.MaximumRecordAgeInSecond">
            <summary>
            <para>
            <para>(Streams only) Discard records older than the specified age. The default value is
            infinite (-1).</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.MaximumRetryAttempt">
            <summary>
            <para>
            <para>(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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.ParallelizationFactor">
            <summary>
            <para>
            <para>(Streams only) The number of batches to process from each shard concurrently.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.Queue">
            <summary>
            <para>
            <para> (MQ) The name of the Amazon MQ broker destination queue to consume. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.SourceAccessConfiguration">
            <summary>
            <para>
            <para>An array of authentication protocols or VPC components required to secure your event
            source.</para>
            </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,
            Amazon DynamoDB, and Amazon MSK Streams sources. <code>AT_TIMESTAMP</code> is supported
            only 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.Topic">
            <summary>
            <para>
            <para>The name of the Kafka topic.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.TumblingWindowInSecond">
            <summary>
            <para>
            <para>(Streams only) The duration in seconds of a processing window. The range is between
            1 second and 900 seconds.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.CreateEventSourceMappingResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.CreateEventSourceMappingResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMEventSourceMappingCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.NewLMFunctionUrlConfigCmdlet">
            <summary>
            Creates a Lambda function URL with the specified configuration parameters. A function
            URL is a dedicated HTTP(S) endpoint that you can use to invoke your function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.Cors_AllowCredential">
            <summary>
            <para>
            <para>Whether to allow cookies or other credentials in requests to your function URL. The
            default is <code>false</code>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.Cors_AllowHeader">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.Cors_AllowMethod">
            <summary>
            <para>
            <para>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>).</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.Cors_AllowOrigin">
            <summary>
            <para>
            <para>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>.</para><para>Alternatively, you can grant access to all origins using the wildcard character (<code>*</code>).</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.AuthType">
            <summary>
            <para>
            <para>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code>
            if you want to restrict access to authenticated 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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.Cors_ExposeHeader">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.CreateFunctionUrlConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.Cors_MaxAge">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>The alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.CreateFunctionUrlConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.CreateFunctionUrlConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.NewLMFunctionUrlConfigCmdlet.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">Lambda
            layer</a> from a ZIP archive. Each time you call <code>PublishLayerVersion</code>
            with the same layer 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.CompatibleArchitecture">
            <summary>
            <para>
            <para>A list of compatible <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction
            set architectures</a>.</para>
            </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. Amazon Web Services SDK and Amazon
            Web Services CLI clients handle the encoding for you.</para>
            </para>
            <para>The cmdlet will automatically convert the supplied parameter of type string, string[], System.IO.FileInfo or System.IO.Stream to byte[] before supplying it to the service.</para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.PublishLayerVersionResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.PublishLayerVersionResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMLayerVersionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the LayerName parameter.
            The -PassThru parameter is deprecated, use -Select '^LayerName' instead. This parameter will be removed in a future version.
            </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>
            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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.PublishVersionResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.PublishVersionResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.PublishLMVersionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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/configuration-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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteAliasResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMAliasCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.RemoveLMCodeSigningConfigCmdlet">
            <summary>
            Deletes the code signing configuration. You can delete the code signing configuration
            only if no function is using it.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMCodeSigningConfigCmdlet.CodeSigningConfigArn">
            <summary>
            <para>
            <para>The The Amazon Resource Name (ARN) of the code signing configuration.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMCodeSigningConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteCodeSigningConfigResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMCodeSigningConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the CodeSigningConfigArn parameter.
            The -PassThru parameter is deprecated, use -Select '^CodeSigningConfigArn' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMCodeSigningConfigCmdlet.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>.
             
              
            <para>
            When you delete an event source mapping, it enters a <code>Deleting</code> state and
            might not be completely deleted for several seconds.
            </para>
            </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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteEventSourceMappingResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.DeleteEventSourceMappingResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMEventSourceMappingCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the UUID parameter.
            The -PassThru parameter is deprecated, use -Select '^UUID' instead. This parameter will be removed in a future version.
            </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 Amazon Web 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 an alias references.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteFunctionResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.RemoveLMFunctionCodeSigningConfigCmdlet">
            <summary>
            Removes the code signing configuration from the function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCodeSigningConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.DeleteFunctionCodeSigningConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCodeSigningConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteFunctionCodeSigningConfigResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCodeSigningConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionCodeSigningConfigCmdlet.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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteFunctionConcurrencyResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionConcurrencyCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.RemoveLMFunctionEventInvokeConfigCmdlet">
            <summary>
            Deletes the configuration for asynchronous invocation for a function, version, or
            alias.
             
              
            <para>
            To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionEventInvokeConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.DeleteFunctionEventInvokeConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionEventInvokeConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>A version number or alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionEventInvokeConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteFunctionEventInvokeConfigResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionEventInvokeConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionEventInvokeConfigCmdlet.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.RemoveLMFunctionUrlConfigCmdlet">
            <summary>
            Deletes a Lambda function URL. When you delete a function URL, you can't recover it.
            Creating a new function URL results in a different URL address.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionUrlConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.DeleteFunctionUrlConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionUrlConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>The alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionUrlConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteFunctionUrlConfigResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionUrlConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMFunctionUrlConfigCmdlet.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">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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteLayerVersionResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the LayerName parameter.
            The -PassThru parameter is deprecated, use -Select '^LayerName' instead. This parameter will be removed in a future version.
            </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">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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.RemoveLayerVersionPermissionResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMLayerVersionPermissionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the LayerName parameter.
            The -PassThru parameter is deprecated, use -Select '^LayerName' instead. This parameter will be removed in a future version.
            </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 Amazon Web Service or another Amazon Web Services
            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>Update the policy only 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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.RemovePermissionResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMPermissionCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.RemoveLMProvisionedConcurrencyConfigCmdlet">
            <summary>
            Deletes the provisioned concurrency configuration for a function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMProvisionedConcurrencyConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.DeleteProvisionedConcurrencyConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMProvisionedConcurrencyConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>The version number or alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMProvisionedConcurrencyConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.DeleteProvisionedConcurrencyConfigResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMProvisionedConcurrencyConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMProvisionedConcurrencyConfigCmdlet.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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The cmdlet doesn't have a return value by default.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.UntagResourceResponse).
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.RemoveLMResourceTagCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the TagKey parameter.
            The -PassThru parameter is deprecated, use -Select '^TagKey' instead. This parameter will be removed in a future version.
            </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/configuration-aliases.html">alias</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.RoutingConfig_AdditionalVersionWeight">
            <summary>
            <para>
            <para>The second version, 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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.UpdateAliasResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.UpdateAliasResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMAliasCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.UpdateLMCodeSigningConfigCmdlet">
            <summary>
            Update the code signing configuration. Changes to the code signing configuration take
            effect the next time a user tries to deploy a code package to the function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMCodeSigningConfigCmdlet.CodeSigningConfigArn">
            <summary>
            <para>
            <para>The The Amazon Resource Name (ARN) of the code signing configuration.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMCodeSigningConfigCmdlet.Description">
            <summary>
            <para>
            <para>Descriptive name for this code signing configuration.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMCodeSigningConfigCmdlet.AllowedPublishers_SigningProfileVersionArn">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) for each of the signing profiles. A signing profile
            defines a trusted user who can sign a code package. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMCodeSigningConfigCmdlet.CodeSigningPolicies_UntrustedArtifactOnDeployment">
            <summary>
            <para>
            <para>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. </para><para>Default value: <code>Warn</code></para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMCodeSigningConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.UpdateCodeSigningConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.UpdateCodeSigningConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMCodeSigningConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the CodeSigningConfigArn parameter.
            The -PassThru parameter is deprecated, use -Select '^CodeSigningConfigArn' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMCodeSigningConfigCmdlet.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 Lambda invokes,
            or pause invocation and resume later from the same location.
             
              
            <para>
            For details about how to configure different event sources, see the following topics.
             
            </para><ul><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-dynamodb-eventsourcemapping">
            Amazon DynamoDB Streams</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-eventsourcemapping">
            Amazon Kinesis</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-eventsource">
            Amazon SQS</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-eventsourcemapping">
            Amazon MQ and RabbitMQ</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html"> Amazon MSK</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/kafka-smaa.html"> Apache Kafka</a></para></li></ul><para>
            The following error handling options are available only for stream sources (DynamoDB
            and Kinesis):
            </para><ul><li><para><code>BisectBatchOnFunctionError</code> – If the function returns an error, split
            the batch in two and retry.
            </para></li><li><para><code>DestinationConfig</code> – Send discarded records to an Amazon SQS queue or
            Amazon SNS topic.
            </para></li><li><para><code>MaximumRecordAgeInSeconds</code> – Discard records older than the specified
            age. The default value is infinite (-1). When set to infinite (-1), failed records
            are retried until the record expires
            </para></li><li><para><code>MaximumRetryAttempts</code> – Discard records after the specified number of
            retries. The default value is infinite (-1). When set to infinite (-1), failed records
            are retried until the record expires.
            </para></li><li><para><code>ParallelizationFactor</code> – Process multiple batches from each shard concurrently.
            </para></li></ul><para>
            For information about which configuration parameters apply to each event source, see
            the following topics.
            </para><ul><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-ddb-params">
            Amazon DynamoDB Streams</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-params">
            Amazon Kinesis</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#services-sqs-params">
            Amazon SQS</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html#services-mq-params">
            Amazon MQ and RabbitMQ</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-parms">
            Amazon MSK</a></para></li><li><para><a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-kafka-parms">
            Apache Kafka</a></para></li></ul>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.BatchSize">
            <summary>
            <para>
            <para>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).</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 10,000.</para></li><li><para><b>Amazon Simple Queue Service</b> – Default 10. For standard queues the max is 10,000.
            For FIFO queues the max is 10.</para></li><li><para><b>Amazon Managed Streaming for Apache Kafka</b> – Default 100. Max 10,000.</para></li><li><para><b>Self-managed Apache Kafka</b> – Default 100. Max 10,000.</para></li><li><para><b>Amazon MQ (ActiveMQ and RabbitMQ)</b> – Default 100. Max 10,000.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.BisectBatchOnFunctionError">
            <summary>
            <para>
            <para>(Streams only) If the function returns an error, split the batch in two and retry.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.DocumentDBEventSourceConfig_CollectionName">
            <summary>
            <para>
            <para> The name of the collection to consume within the database. If you do not specify
            a collection, Lambda consumes all collections. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.DocumentDBEventSourceConfig_DatabaseName">
            <summary>
            <para>
            <para> The name of the database to consume within the DocumentDB cluster. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.OnFailure_Destination">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the destination resource.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.OnSuccess_Destination">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the destination resource.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.Enabled">
            <summary>
            <para>
            <para>When true, the event source mapping is active. When false, Lambda pauses polling and
            invocation.</para><para>Default: True</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.FilterCriteria_Filter">
            <summary>
            <para>
            <para> A list of filters. </para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.DocumentDBEventSourceConfig_FullDocument">
            <summary>
            <para>
            <para> Determines what DocumentDB sends to your event stream during document update operations.
            If set to UpdateLookup, DocumentDB sends a delta describing the changes, along with
            a copy of the entire document. Otherwise, DocumentDB sends only a partial document
            that contains the changes. </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.FunctionResponseType">
            <summary>
            <para>
            <para>(Streams and Amazon SQS) A list of current response type enums applied to the event
            source mapping.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.MaximumBatchingWindowInSecond">
            <summary>
            <para>
            <para>The maximum amount of time, in seconds, that Lambda spends gathering records before
            invoking the function. You can configure <code>MaximumBatchingWindowInSeconds</code>
            to any value from 0 seconds to 300 seconds in increments of seconds.</para><para>For streams and Amazon SQS event sources, the default batching window is 0 seconds.
            For Amazon MSK, Self-managed Apache Kafka, and Amazon MQ event sources, the default
            batching window is 500 ms. Note that because you can only change <code>MaximumBatchingWindowInSeconds</code>
            in increments of seconds, you cannot revert back to the 500 ms default batching window
            after you have changed it. To restore the default batching window, you must create
            a new event source mapping.</para><para>Related setting: For streams and Amazon SQS event sources, when you set <code>BatchSize</code>
            to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code>
            to at least 1.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.ScalingConfig_MaximumConcurrency">
            <summary>
            <para>
            <para>Limits the number of concurrent instances that the Amazon SQS event source can invoke.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.MaximumRecordAgeInSecond">
            <summary>
            <para>
            <para>(Streams only) Discard records older than the specified age. The default value is
            infinite (-1).</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.MaximumRetryAttempt">
            <summary>
            <para>
            <para>(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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.ParallelizationFactor">
            <summary>
            <para>
            <para>(Streams only) The number of batches to process from each shard concurrently.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.SourceAccessConfiguration">
            <summary>
            <para>
            <para>An array of authentication protocols or VPC components required to secure your event
            source.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.TumblingWindowInSecond">
            <summary>
            <para>
            <para>(Streams only) The duration in seconds of a processing window. The range is between
            1 second and 900 seconds.</para>
            </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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.UpdateEventSourceMappingResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.UpdateEventSourceMappingResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMEventSourceMappingCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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>
            When you update a function, Lambda provisions an instance of the function and its
            supporting resources. If your function connects to a VPC, this process can take a
            minute. During this time, you can't modify the function, but you can still invoke
            it. The <code>LastUpdateStatus</code>, <code>LastUpdateStatusReason</code>, and <code>LastUpdateStatusReasonCode</code>
            fields in the response from <a>GetFunctionConfiguration</a> indicate when the update
            is complete and the function is processing events with the new configuration. For
            more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html">Lambda
            function states</a>.
            </para><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 Amazon Web Services account or Amazon Web Service, use <a>AddPermission</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.SnapStart_ApplyOn">
            <summary>
            <para>
            <para>Set to <code>PublishedVersions</code> to create a snapshot of the initialized execution
            environment when you publish a function version.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.ImageConfig_Command">
            <summary>
            <para>
            <para>Specifies parameters that you want to pass in with ENTRYPOINT.</para>
            </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.ImageConfig_EntryPoint">
            <summary>
            <para>
            <para>Specifies the entry point to their application, which is typically the location of
            the runtime executable.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.FileSystemConfig">
            <summary>
            <para>
            <para>Connection settings for an Amazon EFS file system.</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 run 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/foundation-progmodel.html">Lambda
            programming model</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.ImageConfig_IsCommandSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.ImageConfig.Command" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.ImageConfig_IsEntryPointSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.ImageConfig.EntryPoint" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.IsFileSystemConfigsSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.UpdateFunctionConfigurationRequest.FileSystemConfigs" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.IsLayersSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.UpdateFunctionConfigurationRequest.Layers" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.VpcConfig_IsSecurityGroupIdsSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.VpcConfig.SecurityGroupIds" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.VpcConfig_IsSubnetIdsSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.VpcConfig.SubnetIds" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Environment_IsVariablesSet">
            <summary>
            <para>
            This property is set to true if the property <seealso cref="P:Amazon.Lambda.Model.Environment.Variables" />
            is set; false otherwise.
            This property can be used to determine if the related property
            was returned by a service response or if the related property
            should be sent to the service during a service call.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.KMSKeyArn">
            <summary>
            <para>
            <para>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt
            your function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption">environment
            variables</a>. When <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html">Lambda
            SnapStart</a> is activated, this key is also used to encrypt your function's snapshot.
            If you don't provide a customer managed key, 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 <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console">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.</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>Update the function only 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>.
            Runtime is required if the deployment package is a .zip file archive.</para><para>The following list includes deprecated runtimes. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy">Runtime
            deprecation policy</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.VpcConfig_SecurityGroupId">
            <summary>
            <para>
            <para>A list of VPC security group IDs.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.EphemeralStorage_Size">
            <summary>
            <para>
            <para>The size of the function's <code>/tmp</code> directory.</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 (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 more information,
            see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda
            execution environment</a>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Environment_Variable">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.ImageConfig_WorkingDirectory">
            <summary>
            <para>
            <para>Specifies the working directory.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.UpdateFunctionConfigurationResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.UpdateFunctionConfigurationResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionConfigurationCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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.UpdateLMFunctionEventInvokeConfigCmdlet">
            <summary>
            Updates the configuration for asynchronous invocation for a function, version, or
            alias.
             
              
            <para>
            To configure options for asynchronous invocation, use <a>PutFunctionEventInvokeConfig</a>.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.OnFailure_Destination">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the destination resource.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.OnSuccess_Destination">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the destination resource.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.UpdateFunctionEventInvokeConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.MaximumEventAgeInSecond">
            <summary>
            <para>
            <para>The maximum age of a request that Lambda sends to a function for processing.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.MaximumRetryAttempt">
            <summary>
            <para>
            <para>The maximum number of times to retry when the function returns an error.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>A version number or alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.UpdateFunctionEventInvokeConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.UpdateFunctionEventInvokeConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionEventInvokeConfigCmdlet.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.UpdateLMFunctionUrlConfigCmdlet">
            <summary>
            Updates the configuration for a Lambda function URL.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.Cors_AllowCredential">
            <summary>
            <para>
            <para>Whether to allow cookies or other credentials in requests to your function URL. The
            default is <code>false</code>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.Cors_AllowHeader">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.Cors_AllowMethod">
            <summary>
            <para>
            <para>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>).</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.Cors_AllowOrigin">
            <summary>
            <para>
            <para>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>.</para><para>Alternatively, you can grant access to all origins using the wildcard character (<code>*</code>).</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.AuthType">
            <summary>
            <para>
            <para>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code>
            if you want to restrict access to authenticated 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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.Cors_ExposeHeader">
            <summary>
            <para>
            <para>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>.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.UpdateFunctionUrlConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.Cors_MaxAge">
            <summary>
            <para>
            <para>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.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>The alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.UpdateFunctionUrlConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.UpdateFunctionUrlConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.UpdateLMFunctionUrlConfigCmdlet.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.WriteLMFunctionCodeSigningConfigCmdlet">
            <summary>
            Update the code signing configuration for the function. Changes to the code signing
            configuration take effect the next time a user tries to deploy a code package to the
            function.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionCodeSigningConfigCmdlet.CodeSigningConfigArn">
            <summary>
            <para>
            <para>The The Amazon Resource Name (ARN) of the code signing configuration.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionCodeSigningConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.PutFunctionCodeSigningConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionCodeSigningConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.PutFunctionCodeSigningConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.PutFunctionCodeSigningConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionCodeSigningConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the CodeSigningConfigArn parameter.
            The -PassThru parameter is deprecated, use -Select '^CodeSigningConfigArn' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionCodeSigningConfigCmdlet.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/invocation-scaling.html">Lambda
            function scaling</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.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is 'ReservedConcurrentExecutions'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.PutFunctionConcurrencyResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.PutFunctionConcurrencyResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionConcurrencyCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </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>
        <member name="T:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet">
            <summary>
            Configures options for <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html">asynchronous
            invocation</a> on a function, version, or alias. If a configuration already exists
            for a function, version, or alias, this operation overwrites it. If you exclude any
            settings, they are removed. To set one option without affecting existing settings
            for other options, use <a>UpdateFunctionEventInvokeConfig</a>.
             
              
            <para>
            By default, Lambda retries an asynchronous invocation twice if the function returns
            an error. It retains events in a queue for up to six hours. When an event fails all
            processing attempts or stays in the asynchronous invocation queue for too long, Lambda
            discards it. To retain discarded events, configure a dead-letter queue with <a>UpdateFunctionConfiguration</a>.
            </para><para>
            To send an invocation record to a queue, topic, function, or event bus, specify a
            <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations">destination</a>.
            You can configure separate destinations for successful invocations (on-success) and
            events that fail all processing attempts (on-failure). You can configure destinations
            in addition to or instead of a dead-letter queue.
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.OnFailure_Destination">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the destination resource.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.OnSuccess_Destination">
            <summary>
            <para>
            <para>The Amazon Resource Name (ARN) of the destination resource.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.PutFunctionEventInvokeConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.MaximumEventAgeInSecond">
            <summary>
            <para>
            <para>The maximum age of a request that Lambda sends to a function for processing.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.MaximumRetryAttempt">
            <summary>
            <para>
            <para>The maximum number of times to retry when the function returns an error.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>A version number or alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.PutFunctionEventInvokeConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.PutFunctionEventInvokeConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMFunctionEventInvokeConfigCmdlet.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.WriteLMProvisionedConcurrencyConfigCmdlet">
            <summary>
            Adds a provisioned concurrency configuration to a function's alias or version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMProvisionedConcurrencyConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.PutProvisionedConcurrencyConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMProvisionedConcurrencyConfigCmdlet.ProvisionedConcurrentExecution">
            <summary>
            <para>
            <para>The amount of provisioned concurrency to allocate for the version or alias.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMProvisionedConcurrencyConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>The version number or alias name.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMProvisionedConcurrencyConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.PutProvisionedConcurrencyConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.PutProvisionedConcurrencyConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMProvisionedConcurrencyConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMProvisionedConcurrencyConfigCmdlet.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.WriteLMRuntimeManagementConfigCmdlet">
            <summary>
            Sets the runtime management configuration for a function's version. For more information,
            see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html">Runtime
            updates</a>.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMRuntimeManagementConfigCmdlet.FunctionName">
            <summary>
            <para>
            Amazon.Lambda.Model.PutRuntimeManagementConfigRequest.FunctionName
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMRuntimeManagementConfigCmdlet.Qualifier">
            <summary>
            <para>
            <para>Specify a version of the function. This can be <code>$LATEST</code> or a published
            version number. If no value is specified, the configuration for the <code>$LATEST</code>
            version is returned.</para>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMRuntimeManagementConfigCmdlet.RuntimeVersionArn">
            <summary>
            <para>
            <para>The ARN of the runtime version you want the function to use.</para><note><para>This is only required if you're using the <b>Manual</b> runtime update mode.</para></note>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMRuntimeManagementConfigCmdlet.UpdateRuntimeOn">
            <summary>
            <para>
            <para>Specify the runtime update mode.</para><ul><li><para><b>Auto (default)</b> - Automatically update to the most recent and secure runtime
            version using a <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html#runtime-management-two-phase">Two-phase
            runtime version rollout</a>. This is the best choice for most customers to ensure
            they always benefit from runtime updates.</para></li><li><para><b>Function update</b> - Lambda updates the runtime of your function to the most
            recent and secure runtime version when you update your function. This approach synchronizes
            runtime updates with function deployments, giving you control over when runtime updates
            are applied and allowing you to detect and mitigate rare runtime update incompatibilities
            early. When using this setting, you need to regularly update your functions to keep
            their runtime up-to-date.</para></li><li><para><b>Manual</b> - You specify a runtime version in your function configuration. The
            function will use this runtime version indefinitely. In the rare case where a new
            runtime version is incompatible with an existing function, this allows you to roll
            back your function to an earlier runtime version. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html#runtime-management-rollback">Roll
            back a runtime version</a>.</para></li></ul>
            </para>
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMRuntimeManagementConfigCmdlet.Select">
            <summary>
            Use the -Select parameter to control the cmdlet output. The default value is '*'.
            Specifying -Select '*' will result in the cmdlet returning the whole service response (Amazon.Lambda.Model.PutRuntimeManagementConfigResponse).
            Specifying the name of a property of type Amazon.Lambda.Model.PutRuntimeManagementConfigResponse will result in that property being returned.
            Specifying -Select '^ParameterName' will result in the cmdlet returning the selected cmdlet parameter value.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMRuntimeManagementConfigCmdlet.PassThru">
            <summary>
            Changes the cmdlet behavior to return the value passed to the FunctionName parameter.
            The -PassThru parameter is deprecated, use -Select '^FunctionName' instead. This parameter will be removed in a future version.
            </summary>
        </member>
        <member name="P:Amazon.PowerShell.Cmdlets.LM.WriteLMRuntimeManagementConfigCmdlet.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>