Class CfnFunction.LambdaManagedInstancesCapacityProviderConfigProperty
Inherited Members
Namespace: Amazon.CDK.AWS.Lambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunction.LambdaManagedInstancesCapacityProviderConfigProperty : CfnFunction.ILambdaManagedInstancesCapacityProviderConfigProperty
Syntax (vb)
Public Class CfnFunction.LambdaManagedInstancesCapacityProviderConfigProperty Implements CfnFunction.ILambdaManagedInstancesCapacityProviderConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lambda;
var lambdaManagedInstancesCapacityProviderConfigProperty = new LambdaManagedInstancesCapacityProviderConfigProperty {
CapacityProviderArn = "capacityProviderArn",
// the properties below are optional
ExecutionEnvironmentMemoryGiBPerVCpu = 123,
PerExecutionEnvironmentMaxConcurrency = 123
};
Synopsis
Constructors
| LambdaManagedInstancesCapacityProviderConfigProperty() |
Properties
| CapacityProviderArn | The Amazon Resource Name (ARN) of the capacity provider. |
| ExecutionEnvironmentMemoryGiBPerVCpu | The amount of memory in GiB allocated per vCPU for execution environments. |
| PerExecutionEnvironmentMaxConcurrency | The maximum number of concurrent execution environments that can run on each compute instance. |
Constructors
LambdaManagedInstancesCapacityProviderConfigProperty()
public LambdaManagedInstancesCapacityProviderConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lambda;
var lambdaManagedInstancesCapacityProviderConfigProperty = new LambdaManagedInstancesCapacityProviderConfigProperty {
CapacityProviderArn = "capacityProviderArn",
// the properties below are optional
ExecutionEnvironmentMemoryGiBPerVCpu = 123,
PerExecutionEnvironmentMaxConcurrency = 123
};
Properties
CapacityProviderArn
The Amazon Resource Name (ARN) of the capacity provider.
public string CapacityProviderArn { get; set; }
Property Value
Remarks
ExecutionEnvironmentMemoryGiBPerVCpu
The amount of memory in GiB allocated per vCPU for execution environments.
public double? ExecutionEnvironmentMemoryGiBPerVCpu { get; set; }
Property Value
Remarks
PerExecutionEnvironmentMaxConcurrency
The maximum number of concurrent execution environments that can run on each compute instance.
public double? PerExecutionEnvironmentMaxConcurrency { get; set; }