Interface CfnConnectionFunctionPropsMixin.ConnectionFunctionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectionFunctionPropsMixin.ConnectionFunctionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnConnectionFunctionPropsMixin
@Stability(Stable)
public static interface CfnConnectionFunctionPropsMixin.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.cfnpropertymixins.services.cloudfront.*;
ConnectionFunctionConfigProperty connectionFunctionConfigProperty = ConnectionFunctionConfigProperty.builder()
.comment("comment")
.keyValueStoreAssociations(List.of(KeyValueStoreAssociationProperty.builder()
.keyValueStoreArn("keyValueStoreArn")
.build()))
.runtime("runtime")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConnectionFunctionPropsMixin.ConnectionFunctionConfigProperty -
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: '<'eitherIResolvableorCfnConnectionFunctionPropsMixin.KeyValueStoreAssociationProperty>- See Also:
-
getRuntime
The function's runtime environment version.- See Also:
-
builder
@Stability(Stable) static CfnConnectionFunctionPropsMixin.ConnectionFunctionConfigProperty.Builder builder()
-