Interface CfnFunctionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunctionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:30.182Z")
@Stability(Stable)
public interface CfnFunctionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnFunctionPropsMixin.
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.mediatailor.*;
CfnFunctionMixinProps cfnFunctionMixinProps = CfnFunctionMixinProps.builder()
.customOutputConfiguration(CustomOutputConfigurationProperty.builder()
.output(Map.of(
"outputKey", "output"))
.runtime("runtime")
.build())
.description("description")
.functionId("functionId")
.functionType("functionType")
.httpRequestConfiguration(HttpRequestConfigurationProperty.builder()
.body("body")
.headers(Map.of(
"headersKey", "headers"))
.methodType("methodType")
.output(Map.of(
"outputKey", "output"))
.requestTimeoutMilliseconds(123)
.runtime("runtime")
.url("url")
.build())
.sequentialExecutorConfiguration(SequentialExecutorConfigurationProperty.builder()
.functionList(List.of(FunctionRefProperty.builder()
.functionId("functionId")
.runCondition("runCondition")
.build()))
.output(Map.of(
"outputKey", "output"))
.runtime("runtime")
.timeoutMilliseconds(123)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunctionMixinPropsstatic final classAn implementation forCfnFunctionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectConfiguration for custom output functions.default StringA description of the function.default StringThe unique identifier for the function.default Stringdefault ObjectConfiguration for HTTP request functions.default ObjectConfiguration for sequential executor functions.getTags()The tags to assign to the function resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomOutputConfiguration
Configuration for custom output functions.Returns union: either
IResolvableorCfnFunctionPropsMixin.CustomOutputConfigurationProperty- See Also:
-
getDescription
A description of the function.- See Also:
-
getFunctionId
The unique identifier for the function.- See Also:
-
getFunctionType
- See Also:
-
getHttpRequestConfiguration
Configuration for HTTP request functions.Returns union: either
IResolvableorCfnFunctionPropsMixin.HttpRequestConfigurationProperty- See Also:
-
getSequentialExecutorConfiguration
Configuration for sequential executor functions.Returns union: either
IResolvableorCfnFunctionPropsMixin.SequentialExecutorConfigurationProperty- See Also:
-
getTags
The tags to assign to the function resource.- See Also:
-
builder
- Returns:
- a
CfnFunctionMixinProps.BuilderofCfnFunctionMixinProps
-