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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFunctionProps
static final class
An implementation forCfnFunctionProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFunctionProps.Builder
builder()
default Object
A flag that determines whether to automatically publish the function to the `LIVE` stage when it’s created.The function code.Contains configuration information about a CloudFront function.default Object
Contains 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 the `LIVE` stage when it’s created.To automatically publish to the
LIVE
stage, set this property totrue
. -
getFunctionMetadata
Contains metadata about a CloudFront function. -
builder
- Returns:
- a
CfnFunctionProps.Builder
ofCfnFunctionProps
-