public static interface CfnFunction.FunctionConfigProperty
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") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFunction.FunctionConfigProperty.Builder
A builder for
CfnFunction.FunctionConfigProperty |
static class |
CfnFunction.FunctionConfigProperty.Jsii$Proxy
An implementation for
CfnFunction.FunctionConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFunction.FunctionConfigProperty.Builder |
builder() |
java.lang.String |
getComment()
A comment to describe the function.
|
java.lang.String |
getRuntime()
The function's runtime environment.
|
java.lang.String getComment()
java.lang.String getRuntime()
The only valid value is cloudfront-js-1.0
.
static CfnFunction.FunctionConfigProperty.Builder builder()