interface LambdaManagedInstancesCapacityProviderConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnFunctionPropsMixin_LambdaManagedInstancesCapacityProviderConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » CfnFunctionPropsMixin » LambdaManagedInstancesCapacityProviderConfigProperty |
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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const lambdaManagedInstancesCapacityProviderConfigProperty: lambda_mixins.CfnFunctionPropsMixin.LambdaManagedInstancesCapacityProviderConfigProperty = {
capacityProviderArn: 'capacityProviderArn',
executionEnvironmentMemoryGiBPerVCpu: 123,
perExecutionEnvironmentMaxConcurrency: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| capacity | string | The Amazon Resource Name (ARN) of the capacity provider. |
| execution | number | The amount of memory in GiB allocated per vCPU for execution environments. |
| per | number | The maximum number of concurrent executions that can run on each execution environment. |
capacityProviderArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the capacity provider.
executionEnvironmentMemoryGiBPerVCpu?
Type:
number
(optional)
The amount of memory in GiB allocated per vCPU for execution environments.
perExecutionEnvironmentMaxConcurrency?
Type:
number
(optional)
The maximum number of concurrent executions that can run on each execution environment.

.NET
Go
Java
Python
TypeScript