Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package cloudshift.awscdk.dsl.services.ecs.patterns
import cloudshift.awscdk.common.CdkDslMarker
import cloudshift.awscdk.dsl.services.ecs.CloudMapOptionsDsl
import cloudshift.awscdk.dsl.services.ecs.RuntimePlatformDsl
import kotlin.Boolean
import kotlin.Number
import kotlin.String
import kotlin.Unit
import kotlin.collections.Collection
import kotlin.collections.MutableList
import software.amazon.awscdk.Duration
import software.amazon.awscdk.services.ec2.IVpc
import software.amazon.awscdk.services.ecs.CloudMapOptions
import software.amazon.awscdk.services.ecs.FargatePlatformVersion
import software.amazon.awscdk.services.ecs.FargateTaskDefinition
import software.amazon.awscdk.services.ecs.ICluster
import software.amazon.awscdk.services.ecs.PropagatedTagSource
import software.amazon.awscdk.services.ecs.RuntimePlatform
import software.amazon.awscdk.services.ecs.patterns.ApplicationLoadBalancedTaskImageProps
import software.amazon.awscdk.services.ecs.patterns.ApplicationLoadBalancerProps
import software.amazon.awscdk.services.ecs.patterns.ApplicationMultipleTargetGroupsFargateServiceProps
import software.amazon.awscdk.services.ecs.patterns.ApplicationTargetProps
/**
* The properties for the ApplicationMultipleTargetGroupsFargateService service.
*
* 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();
* ```
*/
@CdkDslMarker
public class ApplicationMultipleTargetGroupsFargateServicePropsDsl {
private val cdkBuilder: ApplicationMultipleTargetGroupsFargateServiceProps.Builder =
ApplicationMultipleTargetGroupsFargateServiceProps.builder()
private val _loadBalancers: MutableList = mutableListOf()
private val _targetGroups: MutableList = mutableListOf()
/**
* @param assignPublicIp Determines whether the service will be assigned a public IP address.
*/
public fun assignPublicIp(assignPublicIp: Boolean) {
cdkBuilder.assignPublicIp(assignPublicIp)
}
/**
* @param cloudMapOptions The options for configuring an Amazon ECS service to use service
* discovery.
*/
public fun cloudMapOptions(cloudMapOptions: CloudMapOptionsDsl.() -> Unit = {}) {
val builder = CloudMapOptionsDsl()
builder.apply(cloudMapOptions)
cdkBuilder.cloudMapOptions(builder.build())
}
/**
* @param cloudMapOptions The options for configuring an Amazon ECS service to use service
* discovery.
*/
public fun cloudMapOptions(cloudMapOptions: CloudMapOptions) {
cdkBuilder.cloudMapOptions(cloudMapOptions)
}
/**
* @param cluster The name of the cluster that hosts the service.
* If a cluster is specified, the vpc construct should be omitted. Alternatively, you can omit
* both cluster and vpc.
*/
public fun cluster(cluster: ICluster) {
cdkBuilder.cluster(cluster)
}
/**
* @param cpu The number of cpu units used by the task.
* Valid values, which determines your range of valid values for the memory parameter:
*
* 256 (.25 vCPU) - Available memory values: 0.5GB, 1GB, 2GB
*
* 512 (.5 vCPU) - Available memory values: 1GB, 2GB, 3GB, 4GB
*
* 1024 (1 vCPU) - Available memory values: 2GB, 3GB, 4GB, 5GB, 6GB, 7GB, 8GB
*
* 2048 (2 vCPU) - Available memory values: Between 4GB and 16GB in 1GB increments
*
* 4096 (4 vCPU) - Available memory values: Between 8GB and 30GB in 1GB increments
*
* 8192 (8 vCPU) - Available memory values: Between 16GB and 60GB in 4GB increments
*
* 16384 (16 vCPU) - Available memory values: Between 32GB and 120GB in 8GB increments
*
* This default is set in the underlying FargateTaskDefinition construct.
*/
public fun cpu(cpu: Number) {
cdkBuilder.cpu(cpu)
}
/**
* @param desiredCount The desired number of instantiations of the task definition to keep running
* on the service.
*/
public fun desiredCount(desiredCount: Number) {
cdkBuilder.desiredCount(desiredCount)
}
/**
* @param enableEcsManagedTags Specifies whether to enable Amazon ECS managed tags for the tasks
* within the service.
* For more information, see
* [Tagging Your Amazon ECS
* Resources](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html)
*/
public fun enableEcsManagedTags(enableEcsManagedTags: Boolean) {
cdkBuilder.enableEcsManagedTags(enableEcsManagedTags)
}
/**
* @param enableExecuteCommand Whether ECS Exec should be enabled.
*/
public fun enableExecuteCommand(enableExecuteCommand: Boolean) {
cdkBuilder.enableExecuteCommand(enableExecuteCommand)
}
/**
* @param healthCheckGracePeriod The period of time, in seconds, that the Amazon ECS service
* scheduler ignores unhealthy Elastic Load Balancing target health checks after a task has first
* started.
*/
public fun healthCheckGracePeriod(healthCheckGracePeriod: Duration) {
cdkBuilder.healthCheckGracePeriod(healthCheckGracePeriod)
}
/**
* @param loadBalancers The application load balancer that will serve traffic to the service.
*/
public fun loadBalancers(loadBalancers: ApplicationLoadBalancerPropsDsl.() -> Unit) {
_loadBalancers.add(ApplicationLoadBalancerPropsDsl().apply(loadBalancers).build())
}
/**
* @param loadBalancers The application load balancer that will serve traffic to the service.
*/
public fun loadBalancers(loadBalancers: Collection) {
_loadBalancers.addAll(loadBalancers)
}
/**
* @param memoryLimitMiB The amount (in MiB) of memory used by the task.
* This field is required and you must use one of the following values, which determines your
* range of valid values
* for the cpu parameter:
*
* 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB) - Available cpu values: 256 (.25 vCPU)
*
* 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB) - Available cpu values: 512 (.5 vCPU)
*
* 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB) -
* Available cpu values: 1024 (1 vCPU)
*
* Between 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB) - Available cpu values: 2048
* (2 vCPU)
*
* Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB) - Available cpu values: 4096
* (4 vCPU)
*
* Between 16384 (16 GB) and 61440 (60 GB) in increments of 4096 (4 GB) - Available cpu values:
* 8192 (8 vCPU)
*
* Between 32768 (32 GB) and 122880 (120 GB) in increments of 8192 (8 GB) - Available cpu values:
* 16384 (16 vCPU)
*
* This default is set in the underlying FargateTaskDefinition construct.
*/
public fun memoryLimitMiB(memoryLimitMiB: Number) {
cdkBuilder.memoryLimitMiB(memoryLimitMiB)
}
/**
* @param platformVersion The platform version on which to run your service.
* If one is not specified, the LATEST platform version is used by default. For more information,
* see
* [AWS Fargate Platform
* Versions](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html)
* in the Amazon Elastic Container Service Developer Guide.
*/
public fun platformVersion(platformVersion: FargatePlatformVersion) {
cdkBuilder.platformVersion(platformVersion)
}
/**
* @param propagateTags Specifies whether to propagate the tags from the task definition or the
* service to the tasks in the service.
* Tags can only be propagated to the tasks within the service during service creation.
*/
public fun propagateTags(propagateTags: PropagatedTagSource) {
cdkBuilder.propagateTags(propagateTags)
}
/**
* @param runtimePlatform The runtime platform of the task definition.
*/
public fun runtimePlatform(runtimePlatform: RuntimePlatformDsl.() -> Unit = {}) {
val builder = RuntimePlatformDsl()
builder.apply(runtimePlatform)
cdkBuilder.runtimePlatform(builder.build())
}
/**
* @param runtimePlatform The runtime platform of the task definition.
*/
public fun runtimePlatform(runtimePlatform: RuntimePlatform) {
cdkBuilder.runtimePlatform(runtimePlatform)
}
/**
* @param serviceName The name of the service.
*/
public fun serviceName(serviceName: String) {
cdkBuilder.serviceName(serviceName)
}
/**
* @param targetGroups Properties to specify ALB target groups.
*/
public fun targetGroups(targetGroups: ApplicationTargetPropsDsl.() -> Unit) {
_targetGroups.add(ApplicationTargetPropsDsl().apply(targetGroups).build())
}
/**
* @param targetGroups Properties to specify ALB target groups.
*/
public fun targetGroups(targetGroups: Collection) {
_targetGroups.addAll(targetGroups)
}
/**
* @param taskDefinition The task definition to use for tasks in the service. TaskDefinition or
* TaskImageOptions must be specified, but not both.
* [disable-awslint:ref-via-interface]
*/
public fun taskDefinition(taskDefinition: FargateTaskDefinition) {
cdkBuilder.taskDefinition(taskDefinition)
}
/**
* @param taskImageOptions The properties required to create a new task definition.
* Only one of TaskDefinition or TaskImageOptions must be specified.
*/
public fun taskImageOptions(taskImageOptions: ApplicationLoadBalancedTaskImagePropsDsl.() -> Unit
= {}) {
val builder = ApplicationLoadBalancedTaskImagePropsDsl()
builder.apply(taskImageOptions)
cdkBuilder.taskImageOptions(builder.build())
}
/**
* @param taskImageOptions The properties required to create a new task definition.
* Only one of TaskDefinition or TaskImageOptions must be specified.
*/
public fun taskImageOptions(taskImageOptions: ApplicationLoadBalancedTaskImageProps) {
cdkBuilder.taskImageOptions(taskImageOptions)
}
/**
* @param vpc The VPC where the container instances will be launched or the elastic network
* interfaces (ENIs) will be deployed.
* If a vpc is specified, the cluster construct should be omitted. Alternatively, you can omit
* both vpc and cluster.
*/
public fun vpc(vpc: IVpc) {
cdkBuilder.vpc(vpc)
}
public fun build(): ApplicationMultipleTargetGroupsFargateServiceProps {
if(_loadBalancers.isNotEmpty()) cdkBuilder.loadBalancers(_loadBalancers)
if(_targetGroups.isNotEmpty()) cdkBuilder.targetGroups(_targetGroups)
return cdkBuilder.build()
}
}