Interface CfnFunctionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunctionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.574Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunctionPropsstatic final classAn implementation forCfnFunctionProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFunctionProps.Builderbuilder()default ObjectA flag that determines whether to automatically publish the function to theLIVEstage when it’s created.The function code.Contains configuration information about a CloudFront function.default ObjectContains metadata about a CloudFront function.getName()A name to identify the function.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
Contains configuration information about a CloudFront function. -
getName
A name to identify the function. -
getAutoPublish
A flag that determines whether to automatically publish the function to theLIVEstage when it’s created.To automatically publish to the
LIVEstage, set this property totrue. -
getFunctionMetadata
Contains metadata about a CloudFront function. -
builder
- Returns:
- a
CfnFunctionProps.BuilderofCfnFunctionProps
-