Interface CfnComputeEnvironmentPropsMixin.InstanceLaunchTemplateProperty

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

@Stability(Stable) public static interface CfnComputeEnvironmentPropsMixin.InstanceLaunchTemplateProperty extends software.amazon.jsii.JsiiSerializable
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.batch.*;
 InstanceLaunchTemplateProperty instanceLaunchTemplateProperty = InstanceLaunchTemplateProperty.builder()
         .capacityOptionType("capacityOptionType")
         .capacityReservations(CapacityReservationsProperty.builder()
                 .reservationGroupArn("reservationGroupArn")
                 .reservationPreference("reservationPreference")
                 .build())
         .ec2InstanceProfileArn("ec2InstanceProfileArn")
         .fipsEnabled(false)
         .instanceMetadataTagsPropagation(false)
         .instanceRequirements(InstanceRequirementsProperty.builder()
                 .allowedInstanceTypes(List.of("allowedInstanceTypes"))
                 .build())
         .localStorageConfiguration(ManagedInstancesLocalStorageConfigurationProperty.builder()
                 .useLocalStorage(false)
                 .build())
         .monitoring("monitoring")
         .networkConfiguration(ManagedInstancesNetworkConfigurationProperty.builder()
                 .securityGroups(List.of("securityGroups"))
                 .subnets(List.of("subnets"))
                 .build())
         .storageConfiguration(ManagedInstancesStorageConfigurationProperty.builder()
                 .storageSizeGiB(123)
                 .build())
         .build();
 

See Also: