Class ApplicationMultipleTargetGroupsFargateService
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.services.ecs.patterns.ApplicationMultipleTargetGroupsServiceBase
software.amazon.awscdk.services.ecs.patterns.ApplicationMultipleTargetGroupsFargateService
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-27T16:50:57.159Z")
@Stability(Stable)
public class ApplicationMultipleTargetGroupsFargateService
extends ApplicationMultipleTargetGroupsServiceBase
A Fargate service running on an ECS cluster fronted by an application load balancer.
Example:
import software.amazon.awscdk.services.certificatemanager.Certificate; import software.amazon.awscdk.services.ec2.InstanceType; import software.amazon.awscdk.services.ecs.Cluster; import software.amazon.awscdk.services.ecs.ContainerImage; import software.amazon.awscdk.services.elasticloadbalancingv2.ApplicationProtocol; import software.amazon.awscdk.services.elasticloadbalancingv2.SslPolicy; import software.amazon.awscdk.services.route53.PublicHostedZone; Vpc vpc = Vpc.Builder.create(this, "Vpc").maxAzs(1).build(); ApplicationMultipleTargetGroupsFargateService loadBalancedFargateService = ApplicationMultipleTargetGroupsFargateService.Builder.create(this, "myService") .cluster(Cluster.Builder.create(this, "EcsCluster").vpc(vpc).build()) .memoryLimitMiB(256) .taskImageOptions(ApplicationLoadBalancedTaskImageProps.builder() .image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample")) .build()) .enableExecuteCommand(true) .loadBalancers(List.of(ApplicationLoadBalancerProps.builder() .name("lb") .idleTimeout(Duration.seconds(400)) .domainName("api.example.com") .domainZone(PublicHostedZone.Builder.create(this, "HostedZone").zoneName("example.com").build()) .listeners(List.of(ApplicationListenerProps.builder() .name("listener") .protocol(ApplicationProtocol.HTTPS) .certificate(Certificate.fromCertificateArn(this, "Cert", "helloworld")) .sslPolicy(SslPolicy.TLS12_EXT) .build())) .build(), ApplicationLoadBalancerProps.builder() .name("lb2") .idleTimeout(Duration.seconds(120)) .domainName("frontend.com") .domainZone(PublicHostedZone.Builder.create(this, "HostedZone").zoneName("frontend.com").build()) .listeners(List.of(ApplicationListenerProps.builder() .name("listener2") .protocol(ApplicationProtocol.HTTPS) .certificate(Certificate.fromCertificateArn(this, "Cert2", "helloworld")) .sslPolicy(SslPolicy.TLS12_EXT) .build())) .build())) .targetGroups(List.of(ApplicationTargetProps.builder() .containerPort(80) .listener("listener") .build(), ApplicationTargetProps.builder() .containerPort(90) .pathPattern("a/b/c") .priority(10) .listener("listener") .build(), ApplicationTargetProps.builder() .containerPort(443) .listener("listener2") .build(), ApplicationTargetProps.builder() .containerPort(80) .pathPattern("a/b/c") .priority(10) .listener("listener2") .build())) .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forApplicationMultipleTargetGroupsFargateService
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
ApplicationMultipleTargetGroupsFargateService
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
ApplicationMultipleTargetGroupsFargateService
(software.amazon.jsii.JsiiObjectRef objRef) ApplicationMultipleTargetGroupsFargateService
(software.constructs.Construct scope, String id) Constructs a new instance of the ApplicationMultipleTargetGroupsFargateService class.ApplicationMultipleTargetGroupsFargateService
(software.constructs.Construct scope, String id, ApplicationMultipleTargetGroupsFargateServiceProps props) Constructs a new instance of the ApplicationMultipleTargetGroupsFargateService class. -
Method Summary
Modifier and TypeMethodDescriptionDetermines whether the service will be assigned a public IP address.The Fargate service in this construct.Deprecated.The Fargate task definition in this construct.Methods inherited from class software.amazon.awscdk.services.ecs.patterns.ApplicationMultipleTargetGroupsServiceBase
addPortMappingForTargets, createAWSLogDriver, findListener, findListener, getCluster, getDefaultCluster, getDefaultCluster, getInternalDesiredCount, getListener, getListeners, getLoadBalancer, getLoadBalancers, getLogDriver, getTargetGroups, registerECSTargets, setLogDriver
Methods inherited from class software.constructs.Construct
getNode, isConstruct, 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
-
ApplicationMultipleTargetGroupsFargateService
protected ApplicationMultipleTargetGroupsFargateService(software.amazon.jsii.JsiiObjectRef objRef) -
ApplicationMultipleTargetGroupsFargateService
protected ApplicationMultipleTargetGroupsFargateService(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ApplicationMultipleTargetGroupsFargateService
@Stability(Stable) public ApplicationMultipleTargetGroupsFargateService(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable ApplicationMultipleTargetGroupsFargateServiceProps props) Constructs a new instance of the ApplicationMultipleTargetGroupsFargateService class.- Parameters:
scope
- This parameter is required.id
- This parameter is required.props
-
-
ApplicationMultipleTargetGroupsFargateService
@Stability(Stable) public ApplicationMultipleTargetGroupsFargateService(@NotNull software.constructs.Construct scope, @NotNull String id) Constructs a new instance of the ApplicationMultipleTargetGroupsFargateService class.- Parameters:
scope
- This parameter is required.id
- This parameter is required.
-
-
Method Details
-
getAssignPublicIp
Determines whether the service will be assigned a public IP address. -
getService
The Fargate service in this construct. -
getTargetGroup
Deprecated.- Use
targetGroups
instead.
(deprecated) The default target group for the service. - Use
-
getTaskDefinition
The Fargate task definition in this construct.
-
targetGroups
instead.