Interface CfnServiceEnvironmentProps

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

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-08-12T14:44:11.003Z") @Stability(Stable) public interface CfnServiceEnvironmentProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnServiceEnvironment.

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.batch.*;
 CfnServiceEnvironmentProps cfnServiceEnvironmentProps = CfnServiceEnvironmentProps.builder()
         .capacityLimits(List.of(CapacityLimitProperty.builder()
                 .capacityUnit("capacityUnit")
                 .maxCapacity(123)
                 .build()))
         .serviceEnvironmentType("serviceEnvironmentType")
         // the properties below are optional
         .serviceEnvironmentName("serviceEnvironmentName")
         .state("state")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: