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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFunction.FunctionConfigProperty
static final class
An implementation forCfnFunction.FunctionConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComment
A comment to describe the function.- See Also:
-
getRuntime
The function's runtime environment version.- See Also:
-
getKeyValueStoreAssociations
The configuration for the key value store associations.- See Also:
-
builder
-