Interface CfnFunctionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunctionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-31T18:44:15.161Z") @Stability(Stable) public interface CfnFunctionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a `CfnFunction`.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudfront.*;
 CfnFunctionProps cfnFunctionProps = CfnFunctionProps.builder()
         .functionCode("functionCode")
         .functionConfig(FunctionConfigProperty.builder()
                 .comment("comment")
                 .runtime("runtime")
                 .build())
         .name("name")
         // the properties below are optional
         .autoPublish(false)
         .functionMetadata(FunctionMetadataProperty.builder()
                 .functionArn("functionArn")
                 .build())
         .build();
 
  • Method Details

    • getFunctionCode

      @Stability(Stable) @NotNull String getFunctionCode()
      The function code.

      For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide .

    • getFunctionConfig

      @Stability(Stable) @NotNull Object getFunctionConfig()
      Contains configuration information about a CloudFront function.
    • getName

      @Stability(Stable) @NotNull String getName()
      A name to identify the function.
    • getAutoPublish

      @Stability(Stable) @Nullable default Object getAutoPublish()
      A flag that determines whether to automatically publish the function to the `LIVE` stage when it’s created.

      To automatically publish to the LIVE stage, set this property to true .

    • getFunctionMetadata

      @Stability(Stable) @Nullable default Object getFunctionMetadata()
      Contains metadata about a CloudFront function.
    • builder

      @Stability(Stable) static CfnFunctionProps.Builder builder()
      Returns:
      a CfnFunctionProps.Builder of CfnFunctionProps