Interface FunctionUrlConfig.Builder

    • Method Detail

      • functionUrl

        FunctionUrlConfig.Builder functionUrl​(String functionUrl)

        The HTTP URL endpoint for your function.

        Parameters:
        functionUrl - The HTTP URL endpoint for your function.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • functionArn

        FunctionUrlConfig.Builder functionArn​(String functionArn)

        The Amazon Resource Name (ARN) of your function.

        Parameters:
        functionArn - The Amazon Resource Name (ARN) of your function.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • creationTime

        FunctionUrlConfig.Builder creationTime​(String creationTime)

        When the function URL was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

        Parameters:
        creationTime - When the function URL was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lastModifiedTime

        FunctionUrlConfig.Builder lastModifiedTime​(String lastModifiedTime)

        When the function URL configuration was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

        Parameters:
        lastModifiedTime - When the function URL configuration was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • invokeMode

        FunctionUrlConfig.Builder invokeMode​(String invokeMode)

        Use one of the following options:

        • BUFFERED – This is the default option. Lambda invokes your function using the Invoke API operation. Invocation results are available when the payload is complete. The maximum payload size is 6 MB.

        • RESPONSE_STREAM – Your function streams payload results as they become available. Lambda invokes your function using the InvokeWithResponseStream API operation. The maximum response payload size is 20 MB, however, you can request a quota increase.

        Parameters:
        invokeMode - Use one of the following options:

        • BUFFERED – This is the default option. Lambda invokes your function using the Invoke API operation. Invocation results are available when the payload is complete. The maximum payload size is 6 MB.

        • RESPONSE_STREAM – Your function streams payload results as they become available. Lambda invokes your function using the InvokeWithResponseStream API operation. The maximum response payload size is 20 MB, however, you can request a quota increase.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        InvokeMode, InvokeMode
      • invokeMode

        FunctionUrlConfig.Builder invokeMode​(InvokeMode invokeMode)

        Use one of the following options:

        • BUFFERED – This is the default option. Lambda invokes your function using the Invoke API operation. Invocation results are available when the payload is complete. The maximum payload size is 6 MB.

        • RESPONSE_STREAM – Your function streams payload results as they become available. Lambda invokes your function using the InvokeWithResponseStream API operation. The maximum response payload size is 20 MB, however, you can request a quota increase.

        Parameters:
        invokeMode - Use one of the following options:

        • BUFFERED – This is the default option. Lambda invokes your function using the Invoke API operation. Invocation results are available when the payload is complete. The maximum payload size is 6 MB.

        • RESPONSE_STREAM – Your function streams payload results as they become available. Lambda invokes your function using the InvokeWithResponseStream API operation. The maximum response payload size is 20 MB, however, you can request a quota increase.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        InvokeMode, InvokeMode