Interface CfnConnectionFunction.ConnectionFunctionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectionFunction.ConnectionFunctionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnConnectionFunction
@Stability(Stable)
public static interface CfnConnectionFunction.ConnectionFunctionConfigProperty
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.*;
ConnectionFunctionConfigProperty connectionFunctionConfigProperty = ConnectionFunctionConfigProperty.builder()
.comment("comment")
.runtime("runtime")
// the properties below are optional
.keyValueStoreAssociations(List.of(KeyValueStoreAssociationProperty.builder()
.keyValueStoreArn("keyValueStoreArn")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectionFunction.ConnectionFunctionConfigPropertystatic final classAn implementation forCfnConnectionFunction.ConnectionFunctionConfigProperty -
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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnConnectionFunction.KeyValueStoreAssociationProperty>- See Also:
-
builder
-