Interface CfnFunctionPropsMixin.FunctionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunctionPropsMixin.FunctionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFunctionPropsMixin
@Stability(Stable)
public static interface CfnFunctionPropsMixin.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.cfnpropertymixins.services.cloudfront.*;
FunctionConfigProperty functionConfigProperty = FunctionConfigProperty.builder()
.comment("comment")
.keyValueStoreAssociations(List.of(KeyValueStoreAssociationProperty.builder()
.keyValueStoreArn("keyValueStoreArn")
.build()))
.runtime("runtime")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunctionPropsMixin.FunctionConfigPropertystatic final classAn implementation forCfnFunctionPropsMixin.FunctionConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComment
A comment to describe the function.- See Also:
-
getKeyValueStoreAssociations
The configuration for the key value store associations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnFunctionPropsMixin.KeyValueStoreAssociationProperty>- See Also:
-
getRuntime
The function's runtime environment version.- See Also:
-
builder
-