Interface CfnCapacityProvider.InstanceRequirementsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCapacityProvider.InstanceRequirementsProperty.Jsii$Proxy
Enclosing class:
CfnCapacityProvider

@Stability(Stable) public static interface CfnCapacityProvider.InstanceRequirementsProperty extends software.amazon.jsii.JsiiSerializable
Specifications for the types of EC2 instances that the capacity provider can use.

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.*;
 InstanceRequirementsProperty instanceRequirementsProperty = InstanceRequirementsProperty.builder()
         .allowedInstanceTypes(List.of("allowedInstanceTypes"))
         .architectures(List.of("architectures"))
         .excludedInstanceTypes(List.of("excludedInstanceTypes"))
         .build();
 

See Also: