Interface CfnAutoScalingGroupProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:12.962Z") @Stability(Stable) public interface CfnAutoScalingGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAutoScalingGroup.

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.autoscaling.*;
 CfnAutoScalingGroupProps cfnAutoScalingGroupProps = CfnAutoScalingGroupProps.builder()
         .maxSize("maxSize")
         .minSize("minSize")
         // the properties below are optional
         .autoScalingGroupName("autoScalingGroupName")
         .availabilityZones(List.of("availabilityZones"))
         .capacityRebalance(false)
         .context("context")
         .cooldown("cooldown")
         .defaultInstanceWarmup(123)
         .desiredCapacity("desiredCapacity")
         .desiredCapacityType("desiredCapacityType")
         .healthCheckGracePeriod(123)
         .healthCheckType("healthCheckType")
         .instanceId("instanceId")
         .instanceMaintenancePolicy(InstanceMaintenancePolicyProperty.builder()
                 .maxHealthyPercentage(123)
                 .minHealthyPercentage(123)
                 .build())
         .launchConfigurationName("launchConfigurationName")
         .launchTemplate(LaunchTemplateSpecificationProperty.builder()
                 .version("version")
                 // the properties below are optional
                 .launchTemplateId("launchTemplateId")
                 .launchTemplateName("launchTemplateName")
                 .build())
         .lifecycleHookSpecificationList(List.of(LifecycleHookSpecificationProperty.builder()
                 .lifecycleHookName("lifecycleHookName")
                 .lifecycleTransition("lifecycleTransition")
                 // the properties below are optional
                 .defaultResult("defaultResult")
                 .heartbeatTimeout(123)
                 .notificationMetadata("notificationMetadata")
                 .notificationTargetArn("notificationTargetArn")
                 .roleArn("roleArn")
                 .build()))
         .loadBalancerNames(List.of("loadBalancerNames"))
         .maxInstanceLifetime(123)
         .metricsCollection(List.of(MetricsCollectionProperty.builder()
                 .granularity("granularity")
                 // the properties below are optional
                 .metrics(List.of("metrics"))
                 .build()))
         .mixedInstancesPolicy(MixedInstancesPolicyProperty.builder()
                 .launchTemplate(LaunchTemplateProperty.builder()
                         .launchTemplateSpecification(LaunchTemplateSpecificationProperty.builder()
                                 .version("version")
                                 // the properties below are optional
                                 .launchTemplateId("launchTemplateId")
                                 .launchTemplateName("launchTemplateName")
                                 .build())
                         // the properties below are optional
                         .overrides(List.of(LaunchTemplateOverridesProperty.builder()
                                 .instanceRequirements(InstanceRequirementsProperty.builder()
                                         .memoryMiB(MemoryMiBRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         .vCpuCount(VCpuCountRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         // the properties below are optional
                                         .acceleratorCount(AcceleratorCountRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         .acceleratorManufacturers(List.of("acceleratorManufacturers"))
                                         .acceleratorNames(List.of("acceleratorNames"))
                                         .acceleratorTotalMemoryMiB(AcceleratorTotalMemoryMiBRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         .acceleratorTypes(List.of("acceleratorTypes"))
                                         .allowedInstanceTypes(List.of("allowedInstanceTypes"))
                                         .bareMetal("bareMetal")
                                         .baselineEbsBandwidthMbps(BaselineEbsBandwidthMbpsRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         .burstablePerformance("burstablePerformance")
                                         .cpuManufacturers(List.of("cpuManufacturers"))
                                         .excludedInstanceTypes(List.of("excludedInstanceTypes"))
                                         .instanceGenerations(List.of("instanceGenerations"))
                                         .localStorage("localStorage")
                                         .localStorageTypes(List.of("localStorageTypes"))
                                         .maxSpotPriceAsPercentageOfOptimalOnDemandPrice(123)
                                         .memoryGiBPerVCpu(MemoryGiBPerVCpuRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         .networkBandwidthGbps(NetworkBandwidthGbpsRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         .networkInterfaceCount(NetworkInterfaceCountRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         .onDemandMaxPricePercentageOverLowestPrice(123)
                                         .requireHibernateSupport(false)
                                         .spotMaxPricePercentageOverLowestPrice(123)
                                         .totalLocalStorageGb(TotalLocalStorageGBRequestProperty.builder()
                                                 .max(123)
                                                 .min(123)
                                                 .build())
                                         .build())
                                 .instanceType("instanceType")
                                 .launchTemplateSpecification(LaunchTemplateSpecificationProperty.builder()
                                         .version("version")
                                         // the properties below are optional
                                         .launchTemplateId("launchTemplateId")
                                         .launchTemplateName("launchTemplateName")
                                         .build())
                                 .weightedCapacity("weightedCapacity")
                                 .build()))
                         .build())
                 // the properties below are optional
                 .instancesDistribution(InstancesDistributionProperty.builder()
                         .onDemandAllocationStrategy("onDemandAllocationStrategy")
                         .onDemandBaseCapacity(123)
                         .onDemandPercentageAboveBaseCapacity(123)
                         .spotAllocationStrategy("spotAllocationStrategy")
                         .spotInstancePools(123)
                         .spotMaxPrice("spotMaxPrice")
                         .build())
                 .build())
         .newInstancesProtectedFromScaleIn(false)
         .notificationConfiguration(NotificationConfigurationProperty.builder()
                 .topicArn("topicArn")
                 // the properties below are optional
                 .notificationTypes(List.of("notificationTypes"))
                 .build())
         .notificationConfigurations(List.of(NotificationConfigurationProperty.builder()
                 .topicArn("topicArn")
                 // the properties below are optional
                 .notificationTypes(List.of("notificationTypes"))
                 .build()))
         .placementGroup("placementGroup")
         .serviceLinkedRoleArn("serviceLinkedRoleArn")
         .tags(List.of(TagPropertyProperty.builder()
                 .key("key")
                 .propagateAtLaunch(false)
                 .value("value")
                 .build()))
         .targetGroupArns(List.of("targetGroupArns"))
         .terminationPolicies(List.of("terminationPolicies"))
         .vpcZoneIdentifier(List.of("vpcZoneIdentifier"))
         .build();
 

See Also: