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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunctionPropsMixin.CapacityProviderConfigPropertystatic final classAn implementation forCfnFunctionPropsMixin.CapacityProviderConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLambdaManagedInstancesCapacityProviderConfig
Configuration for Lambda-managed instances used by the capacity provider.Returns union: either
IResolvableorCfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty- See Also:
-
builder
-