Interface CfnVersionMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:00.942Z") @Stability(Stable) public interface CfnVersionMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnVersionPropsMixin.

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.lambda.*;
 CfnVersionMixinProps cfnVersionMixinProps = CfnVersionMixinProps.builder()
         .codeSha256("codeSha256")
         .description("description")
         .functionName("functionName")
         .functionScalingConfig(FunctionScalingConfigProperty.builder()
                 .maxExecutionEnvironments(123)
                 .minExecutionEnvironments(123)
                 .build())
         .provisionedConcurrencyConfig(ProvisionedConcurrencyConfigurationProperty.builder()
                 .provisionedConcurrentExecutions(123)
                 .build())
         .runtimePolicy(RuntimePolicyProperty.builder()
                 .runtimeVersionArn("runtimeVersionArn")
                 .updateRuntimeOn("updateRuntimeOn")
                 .build())
         .build();
 

See Also: