Interface CfnFunctionConfigurationMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunctionConfigurationMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:22.784Z") @Stability(Stable) public interface CfnFunctionConfigurationMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnFunctionConfigurationPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.appsync.mixins.*;
 CfnFunctionConfigurationMixinProps cfnFunctionConfigurationMixinProps = CfnFunctionConfigurationMixinProps.builder()
         .apiId("apiId")
         .code("code")
         .codeS3Location("codeS3Location")
         .dataSourceName("dataSourceName")
         .description("description")
         .functionVersion("functionVersion")
         .maxBatchSize(123)
         .name("name")
         .requestMappingTemplate("requestMappingTemplate")
         .requestMappingTemplateS3Location("requestMappingTemplateS3Location")
         .responseMappingTemplate("responseMappingTemplate")
         .responseMappingTemplateS3Location("responseMappingTemplateS3Location")
         .runtime(AppSyncRuntimeProperty.builder()
                 .name("name")
                 .runtimeVersion("runtimeVersion")
                 .build())
         .syncConfig(SyncConfigProperty.builder()
                 .conflictDetection("conflictDetection")
                 .conflictHandler("conflictHandler")
                 .lambdaConflictHandlerConfig(LambdaConflictHandlerConfigProperty.builder()
                         .lambdaConflictHandlerArn("lambdaConflictHandlerArn")
                         .build())
                 .build())
         .build();
 

See Also: