Interface CfnFunctionPropsMixin.CapacityProviderConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunctionPropsMixin.CapacityProviderConfigProperty.Jsii$Proxy
Enclosing class:
CfnFunctionPropsMixin

@Stability(Stable) public static interface CfnFunctionPropsMixin.CapacityProviderConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration for the capacity provider that manages compute resources for Lambda functions.

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.*;
 CapacityProviderConfigProperty capacityProviderConfigProperty = CapacityProviderConfigProperty.builder()
         .lambdaManagedInstancesCapacityProviderConfig(LambdaManagedInstancesCapacityProviderConfigProperty.builder()
                 .capacityProviderArn("capacityProviderArn")
                 .executionEnvironmentMemoryGiBPerVCpu(123)
                 .perExecutionEnvironmentMaxConcurrency(123)
                 .build())
         .build();
 

See Also: