Class NetworkMultipleTargetGroupsEc2Service
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.services.ecs.patterns.NetworkMultipleTargetGroupsServiceBase
software.amazon.awscdk.services.ecs.patterns.NetworkMultipleTargetGroupsEc2Service
- All Implemented Interfaces:
IConstruct
,IDependable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.755Z")
@Stability(Stable)
public class NetworkMultipleTargetGroupsEc2Service
extends NetworkMultipleTargetGroupsServiceBase
An EC2 service running on an ECS cluster fronted by a network load balancer.
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();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forNetworkMultipleTargetGroupsEc2Service
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
NetworkMultipleTargetGroupsEc2Service
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
NetworkMultipleTargetGroupsEc2Service
(software.amazon.jsii.JsiiObjectRef objRef) NetworkMultipleTargetGroupsEc2Service
(software.constructs.Construct scope, String id) Constructs a new instance of the NetworkMultipleTargetGroupsEc2Service class.NetworkMultipleTargetGroupsEc2Service
(software.constructs.Construct scope, String id, NetworkMultipleTargetGroupsEc2ServiceProps props) Constructs a new instance of the NetworkMultipleTargetGroupsEc2Service class. -
Method Summary
Modifier and TypeMethodDescriptionThe EC2 service in this construct.The default target group for the service.The EC2 Task Definition in this construct.Methods inherited from class software.amazon.awscdk.services.ecs.patterns.NetworkMultipleTargetGroupsServiceBase
addPortMappingForTargets, createAWSLogDriver, findListener, findListener, getCluster, getDefaultCluster, getDefaultCluster, getDesiredCount, getInternalDesiredCount, getListener, getListeners, getLoadBalancer, getLogDriver, getTargetGroups, registerECSTargets, setListeners, setLogDriver, setTargetGroups
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.constructs.Construct
toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
NetworkMultipleTargetGroupsEc2Service
protected NetworkMultipleTargetGroupsEc2Service(software.amazon.jsii.JsiiObjectRef objRef) -
NetworkMultipleTargetGroupsEc2Service
protected NetworkMultipleTargetGroupsEc2Service(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
NetworkMultipleTargetGroupsEc2Service
@Stability(Stable) public NetworkMultipleTargetGroupsEc2Service(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable NetworkMultipleTargetGroupsEc2ServiceProps props) Constructs a new instance of the NetworkMultipleTargetGroupsEc2Service class.- Parameters:
scope
- This parameter is required.id
- This parameter is required.props
-
-
NetworkMultipleTargetGroupsEc2Service
@Stability(Stable) public NetworkMultipleTargetGroupsEc2Service(@NotNull software.constructs.Construct scope, @NotNull String id) Constructs a new instance of the NetworkMultipleTargetGroupsEc2Service class.- Parameters:
scope
- This parameter is required.id
- This parameter is required.
-
-
Method Details
-
getService
The EC2 service in this construct. -
getTargetGroup
The default target group for the service. -
getTaskDefinition
The EC2 Task Definition in this construct.
-