JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.795

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
com.amazonaws.services.lambda.model

Class UpdateFunctionUrlConfigResult

    • Constructor Detail

      • UpdateFunctionUrlConfigResult

        public UpdateFunctionUrlConfigResult()
    • Method Detail

      • setFunctionUrl

        public void setFunctionUrl(String functionUrl)

        The HTTP URL endpoint for your function.

        Parameters:
        functionUrl - The HTTP URL endpoint for your function.
      • getFunctionUrl

        public String getFunctionUrl()

        The HTTP URL endpoint for your function.

        Returns:
        The HTTP URL endpoint for your function.
      • withFunctionUrl

        public UpdateFunctionUrlConfigResult withFunctionUrl(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.
      • setFunctionArn

        public void setFunctionArn(String functionArn)

        The Amazon Resource Name (ARN) of your function.

        Parameters:
        functionArn - The Amazon Resource Name (ARN) of your function.
      • getFunctionArn

        public String getFunctionArn()

        The Amazon Resource Name (ARN) of your function.

        Returns:
        The Amazon Resource Name (ARN) of your function.
      • withFunctionArn

        public UpdateFunctionUrlConfigResult withFunctionArn(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.
      • setAuthType

        public void setAuthType(String authType)

        The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.

        Parameters:
        authType - The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
        See Also:
        FunctionUrlAuthType
      • getAuthType

        public String getAuthType()

        The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.

        Returns:
        The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
        See Also:
        FunctionUrlAuthType
      • withAuthType

        public UpdateFunctionUrlConfigResult withAuthType(String authType)

        The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.

        Parameters:
        authType - The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        FunctionUrlAuthType
      • withAuthType

        public UpdateFunctionUrlConfigResult withAuthType(FunctionUrlAuthType authType)

        The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.

        Parameters:
        authType - The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        FunctionUrlAuthType
      • setCreationTime

        public void setCreationTime(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).
      • getCreationTime

        public String getCreationTime()

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

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

        public UpdateFunctionUrlConfigResult withCreationTime(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.
      • setLastModifiedTime

        public void setLastModifiedTime(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).
      • getLastModifiedTime

        public String getLastModifiedTime()

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

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

        public UpdateFunctionUrlConfigResult withLastModifiedTime(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.
      • setInvokeMode

        public void setInvokeMode(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.

        See Also:
        InvokeMode
      • getInvokeMode

        public String getInvokeMode()

        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:
        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.

        See Also:
        InvokeMode
      • withInvokeMode

        public UpdateFunctionUrlConfigResult withInvokeMode(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
      • withInvokeMode

        public UpdateFunctionUrlConfigResult withInvokeMode(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
      • toString

        public String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
        Returns:
        A string representation of this object.
        See Also:
        Object.toString()
Skip navigation links

AltStyle によって変換されたページ (->オリジナル) /