Interface LambdaFunctionMetadata.Builder

    • Method Detail

      • functionName

        LambdaFunctionMetadata.Builder functionName​(String functionName)

        The name of a function.

        Parameters:
        functionName - The name of a function.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • functionTags

        LambdaFunctionMetadata.Builder functionTags​(Map<String,​String> functionTags)

        The resource tags on an AWS Lambda function.

        Parameters:
        functionTags - The resource tags on an AWS Lambda function.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • layers

        LambdaFunctionMetadata.Builder layers​(Collection<String> layers)

        The layers for an AWS Lambda function. A Lambda function can have up to five layers.

        Parameters:
        layers - The layers for an AWS Lambda function. A Lambda function can have up to five layers.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • layers

        LambdaFunctionMetadata.Builder layers​(String... layers)

        The layers for an AWS Lambda function. A Lambda function can have up to five layers.

        Parameters:
        layers - The layers for an AWS Lambda function. A Lambda function can have up to five layers.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • runtime

        LambdaFunctionMetadata.Builder runtime​(String runtime)

        An AWS Lambda function's runtime.

        Parameters:
        runtime - An AWS Lambda function's runtime.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        Runtime, Runtime
      • runtime

        LambdaFunctionMetadata.Builder runtime​(Runtime runtime)

        An AWS Lambda function's runtime.

        Parameters:
        runtime - An AWS Lambda function's runtime.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        Runtime, Runtime