interface InstanceRequirementsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lambda.CfnCapacityProvider.InstanceRequirementsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnCapacityProvider_InstanceRequirementsProperty |
Java | software.amazon.awscdk.services.lambda.CfnCapacityProvider.InstanceRequirementsProperty |
Python | aws_cdk.aws_lambda.CfnCapacityProvider.InstanceRequirementsProperty |
TypeScript | aws-cdk-lib » aws_lambda » CfnCapacityProvider » InstanceRequirementsProperty |
Specifications that define the characteristics and constraints for compute 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 { aws_lambda as lambda } from 'aws-cdk-lib';
const instanceRequirementsProperty: lambda.CfnCapacityProvider.InstanceRequirementsProperty = {
allowedInstanceTypes: ['allowedInstanceTypes'],
architectures: ['architectures'],
excludedInstanceTypes: ['excludedInstanceTypes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | A list of EC2 instance types that the capacity provider is allowed to use. |
| architectures? | string[] | A list of supported CPU architectures for compute instances. |
| excluded | string[] | A list of EC2 instance types that the capacity provider should not use, even if they meet other requirements. |
allowedInstanceTypes?
Type:
string[]
(optional)
A list of EC2 instance types that the capacity provider is allowed to use.
If not specified, all compatible instance types are allowed.
architectures?
Type:
string[]
(optional)
A list of supported CPU architectures for compute instances.
Valid values include x86_64 and arm64 .
excludedInstanceTypes?
Type:
string[]
(optional)
A list of EC2 instance types that the capacity provider should not use, even if they meet other requirements.

.NET
Go
Java
Python
TypeScript