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
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
Modifier and TypeMethodDescriptionbuilder()The 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 execution environments that can run on each compute instance.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 execution environments that can run on each compute instance.- See Also:
-
builder
@Stability(Stable) static CfnFunction.LambdaManagedInstancesCapacityProviderConfigProperty.Builder builder()
-