Interface CfnFunction.LambdaManagedInstancesCapacityProviderConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunction.LambdaManagedInstancesCapacityProviderConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFunction
@Stability(Stable)
public static interface CfnFunction.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.services.lambda.*;
LambdaManagedInstancesCapacityProviderConfigProperty lambdaManagedInstancesCapacityProviderConfigProperty = LambdaManagedInstancesCapacityProviderConfigProperty.builder()
.capacityProviderArn("capacityProviderArn")
// the properties below are optional
.executionEnvironmentMemoryGiBPerVCpu(123)
.perExecutionEnvironmentMaxConcurrency(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnFunction.LambdaManagedInstancesCapacityProviderConfigProperty -
Method Summary
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 CfnFunction.LambdaManagedInstancesCapacityProviderConfigProperty.Builder builder()
-