aws.cloudfront.get_function
Example SQL Queries
SELECT * FROMaws.cloudfront.get_functionWHERE"name" = 'VALUE';Description
Gets the code of a CloudFront function. To get configuration information and metadata about a function, use DescribeFunction.
To get a function's code, you must provide the function's name and stage. To get these values, you can use ListFunctions.
Table Definition
| Column Name | Column Data Type |
|---|---|
| name Required Input Column The name of the function whose code you are getting. | VARCHAR |
| stage Input Column The function's stage, either DEVELOPMENT or LIVE. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| content_type The content type (media type) of the response. | VARCHAR |
| e_tag The version identifier for the current version of the CloudFront function. | VARCHAR |
| function_code The function code of a CloudFront function. | BLOB |