Interface NetworkMultipleTargetGroupsEc2ServiceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, NetworkMultipleTargetGroupsServiceBaseProps
All Known Implementing Classes:
NetworkMultipleTargetGroupsEc2ServiceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-05T20:26:30.818Z") @Stability(Stable) public interface NetworkMultipleTargetGroupsEc2ServiceProps extends software.amazon.jsii.JsiiSerializable, NetworkMultipleTargetGroupsServiceBaseProps
The properties for the NetworkMultipleTargetGroupsEc2Service service.

Example:

 // Two network load balancers, each with their own listener and target group.
 Cluster cluster;
 NetworkMultipleTargetGroupsEc2Service loadBalancedEc2Service = NetworkMultipleTargetGroupsEc2Service.Builder.create(this, "Service")
         .cluster(cluster)
         .memoryLimitMiB(256)
         .taskImageOptions(NetworkLoadBalancedTaskImageProps.builder()
                 .image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
                 .build())
         .loadBalancers(List.of(NetworkLoadBalancerProps.builder()
                 .name("lb1")
                 .listeners(List.of(NetworkListenerProps.builder()
                         .name("listener1")
                         .build()))
                 .build(), NetworkLoadBalancerProps.builder()
                 .name("lb2")
                 .listeners(List.of(NetworkListenerProps.builder()
                         .name("listener2")
                         .build()))
                 .build()))
         .targetGroups(List.of(NetworkTargetProps.builder()
                 .containerPort(80)
                 .listener("listener1")
                 .build(), NetworkTargetProps.builder()
                 .containerPort(90)
                 .listener("listener2")
                 .build()))
         .build();
 
  • Method Details

    • getCpu

      @Stability(Stable) @Nullable default Number getCpu()
      The minimum number of CPU units to reserve for the container.

      Valid values, which determines your range of valid values for the memory parameter:

      Default: - No minimum CPU units reserved.

    • getMemoryLimitMiB

      @Stability(Stable) @Nullable default Number getMemoryLimitMiB()
      The amount (in MiB) of memory to present to the container.

      If your container attempts to exceed the allocated memory, the container is terminated.

      At least one of memoryLimitMiB and memoryReservationMiB is required.

      Default: - No memory limit.

    • getMemoryReservationMiB

      @Stability(Stable) @Nullable default Number getMemoryReservationMiB()
      The soft limit (in MiB) of memory to reserve for the container.

      When system memory is under heavy contention, Docker attempts to keep the container memory to this soft limit. However, your container can consume more memory when it needs to, up to either the hard limit specified with the memory parameter (if applicable), or all of the available memory on the container instance, whichever comes first.

      At least one of memoryLimitMiB and memoryReservationMiB is required.

      Note that this setting will be ignored if TaskImagesOptions is specified.

      Default: - No memory reserved.

    • getPlacementConstraints

      @Stability(Stable) @Nullable default List<PlacementConstraint> getPlacementConstraints()
      The placement constraints to use for tasks in the service.

      For more information, see Amazon ECS Task Placement Constraints.

      Default: - No constraints.

    • getPlacementStrategies

      @Stability(Stable) @Nullable default List<PlacementStrategy> getPlacementStrategies()
      The placement strategies to use for tasks in the service.

      For more information, see Amazon ECS Task Placement Strategies.

      Default: - No strategies.

    • getTaskDefinition

      @Stability(Stable) @Nullable default Ec2TaskDefinition getTaskDefinition()
      The task definition to use for tasks in the service. Only one of TaskDefinition or TaskImageOptions must be specified.

      [disable-awslint:ref-via-interface]

      Default: - none

    • builder

      @Stability(Stable) static NetworkMultipleTargetGroupsEc2ServiceProps.Builder builder()
      Returns:
      a NetworkMultipleTargetGroupsEc2ServiceProps.Builder of NetworkMultipleTargetGroupsEc2ServiceProps