Interface CfnFunction.FunctionConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunction.FunctionConfigProperty.Jsii$Proxy
Enclosing class:
CfnFunction

@Stability(Stable) public static interface CfnFunction.FunctionConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains configuration information about a CloudFront function.

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.*;
 FunctionConfigProperty functionConfigProperty = FunctionConfigProperty.builder()
         .comment("comment")
         .runtime("runtime")
         // the properties below are optional
         .keyValueStoreAssociations(List.of(KeyValueStoreAssociationProperty.builder()
                 .keyValueStoreArn("keyValueStoreArn")
                 .build()))
         .build();
 

See Also: