Interface CfnCapacityProviderMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCapacityProviderMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:00.875Z") @Stability(Stable) public interface CfnCapacityProviderMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnCapacityProviderPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.lambda.*;
 CfnCapacityProviderMixinProps cfnCapacityProviderMixinProps = CfnCapacityProviderMixinProps.builder()
         .capacityProviderName("capacityProviderName")
         .capacityProviderScalingConfig(CapacityProviderScalingConfigProperty.builder()
                 .maxVCpuCount(123)
                 .scalingMode("scalingMode")
                 .scalingPolicies(List.of(TargetTrackingScalingPolicyProperty.builder()
                         .predefinedMetricType("predefinedMetricType")
                         .targetValue(123)
                         .build()))
                 .build())
         .instanceRequirements(InstanceRequirementsProperty.builder()
                 .allowedInstanceTypes(List.of("allowedInstanceTypes"))
                 .architectures(List.of("architectures"))
                 .excludedInstanceTypes(List.of("excludedInstanceTypes"))
                 .build())
         .kmsKeyArn("kmsKeyArn")
         .permissionsConfig(CapacityProviderPermissionsConfigProperty.builder()
                 .capacityProviderOperatorRoleArn("capacityProviderOperatorRoleArn")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .vpcConfig(CapacityProviderVpcConfigProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .build();
 

See Also: