Interface CfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFunctionPropsMixin
@Stability(Stable)
public static interface CfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for Lambda-managed instances used by the capacity provider.
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.*;
LambdaManagedInstancesCapacityProviderConfigProperty lambdaManagedInstancesCapacityProviderConfigProperty = LambdaManagedInstancesCapacityProviderConfigProperty.builder()
.capacityProviderArn("capacityProviderArn")
.executionEnvironmentMemoryGiBPerVCpu(123)
.perExecutionEnvironmentMaxConcurrency(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) of the capacity provider.default NumberThe amount of memory in GiB allocated per vCPU for execution environments.default NumberThe maximum number of concurrent executions that can run on each execution environment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCapacityProviderArn
The Amazon Resource Name (ARN) of the capacity provider.- See Also:
-
getExecutionEnvironmentMemoryGiBPerVCpu
The amount of memory in GiB allocated per vCPU for execution environments.- See Also:
-
getPerExecutionEnvironmentMaxConcurrency
The maximum number of concurrent executions that can run on each execution environment.- See Also:
-
builder
@Stability(Stable) static CfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty.Builder builder()
-