Class ApplicationLoadBalancedFargateService
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.services.ecs.patterns.ApplicationLoadBalancedServiceBase
software.amazon.awscdk.services.ecs.patterns.ApplicationLoadBalancedFargateService
- 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.691Z")
@Stability(Stable)
public class ApplicationLoadBalancedFargateService
extends ApplicationLoadBalancedServiceBase
A Fargate service running on an ECS cluster fronted by an application load balancer.
Example:
Cluster cluster;
ApplicationLoadBalancedFargateService loadBalancedFargateService = ApplicationLoadBalancedFargateService.Builder.create(this, "Service")
.cluster(cluster)
.memoryLimitMiB(1024)
.desiredCount(1)
.cpu(512)
.taskImageOptions(ApplicationLoadBalancedTaskImageOptions.builder()
.image(ContainerImage.fromRegistry("amazon/amazon-ecs-sample"))
.build())
.build();
ScalableTaskCount scalableTarget = loadBalancedFargateService.service.autoScaleTaskCount(EnableScalingProps.builder()
.minCapacity(1)
.maxCapacity(20)
.build());
scalableTarget.scaleOnCpuUtilization("CpuScaling", CpuUtilizationScalingProps.builder()
.targetUtilizationPercent(50)
.build());
scalableTarget.scaleOnMemoryUtilization("MemoryScaling", MemoryUtilizationScalingProps.builder()
.targetUtilizationPercent(50)
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forApplicationLoadBalancedFargateService.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedApplicationLoadBalancedFargateService(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedApplicationLoadBalancedFargateService(software.amazon.jsii.JsiiObjectRef objRef) ApplicationLoadBalancedFargateService(software.constructs.Construct scope, String id) Constructs a new instance of the ApplicationLoadBalancedFargateService class.ApplicationLoadBalancedFargateService(software.constructs.Construct scope, String id, ApplicationLoadBalancedFargateServiceProps props) Constructs a new instance of the ApplicationLoadBalancedFargateService class. -
Method Summary
Modifier and TypeMethodDescriptionDetermines whether the service will be assigned a public IP address.The Fargate service in this construct.The Fargate task definition in this construct.Methods inherited from class software.amazon.awscdk.services.ecs.patterns.ApplicationLoadBalancedServiceBase
addServiceAsTarget, createAWSLogDriver, getCertificate, getCluster, getDefaultCluster, getDefaultCluster, getDesiredCount, getInternalDesiredCount, getListener, getLoadBalancer, getRedirectListener, getTargetGroupMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.constructs.Construct
toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
ApplicationLoadBalancedFargateService
protected ApplicationLoadBalancedFargateService(software.amazon.jsii.JsiiObjectRef objRef) -
ApplicationLoadBalancedFargateService
protected ApplicationLoadBalancedFargateService(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ApplicationLoadBalancedFargateService
@Stability(Stable) public ApplicationLoadBalancedFargateService(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable ApplicationLoadBalancedFargateServiceProps props) Constructs a new instance of the ApplicationLoadBalancedFargateService class.- Parameters:
scope- This parameter is required.id- This parameter is required.props-
-
ApplicationLoadBalancedFargateService
@Stability(Stable) public ApplicationLoadBalancedFargateService(@NotNull software.constructs.Construct scope, @NotNull String id) Constructs a new instance of the ApplicationLoadBalancedFargateService 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. -
getTaskDefinition
The Fargate task definition in this construct.
-