public static final class QueueProcessingFargateServiceProps.Builder
extends java.lang.Object
QueueProcessingFargateServiceProps
Constructor and Description |
---|
Builder() |
public QueueProcessingFargateServiceProps.Builder assignPublicIp(java.lang.Boolean assignPublicIp)
QueueProcessingFargateServiceProps.getAssignPublicIp()
assignPublicIp
- Specifies whether the task's elastic network interface receives a public IP address.
If true, each task will receive a public IP address.this
public QueueProcessingFargateServiceProps.Builder containerName(java.lang.String containerName)
QueueProcessingFargateServiceProps.getContainerName()
containerName
- Optional name for the container added.this
public QueueProcessingFargateServiceProps.Builder cpu(java.lang.Number cpu)
QueueProcessingFargateServiceProps.getCpu()
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
This default is set in the underlying FargateTaskDefinition construct.
this
public QueueProcessingFargateServiceProps.Builder healthCheck(HealthCheck healthCheck)
QueueProcessingFargateServiceProps.getHealthCheck()
healthCheck
- The health check command and associated configuration parameters for the container.this
public QueueProcessingFargateServiceProps.Builder memoryLimitMiB(java.lang.Number memoryLimitMiB)
QueueProcessingFargateServiceProps.getMemoryLimitMiB()
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:
0.5GB, 1GB, 2GB - Available cpu values: 256 (.25 vCPU)
1GB, 2GB, 3GB, 4GB - Available cpu values: 512 (.5 vCPU)
2GB, 3GB, 4GB, 5GB, 6GB, 7GB, 8GB - Available cpu values: 1024 (1 vCPU)
Between 4GB and 16GB in 1GB increments - Available cpu values: 2048 (2 vCPU)
Between 8GB and 30GB in 1GB increments - Available cpu values: 4096 (4 vCPU)
This default is set in the underlying FargateTaskDefinition construct.
this
public QueueProcessingFargateServiceProps.Builder platformVersion(FargatePlatformVersion platformVersion)
QueueProcessingFargateServiceProps.getPlatformVersion()
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
in the Amazon Elastic Container Service Developer Guide.this
public QueueProcessingFargateServiceProps.Builder securityGroups(java.util.List<? extends ISecurityGroup> securityGroups)
QueueProcessingFargateServiceProps.getSecurityGroups()
securityGroups
- The security groups to associate with the service.
If you do not specify a security group, a new security group is created.this
public QueueProcessingFargateServiceProps.Builder taskSubnets(SubnetSelection taskSubnets)
QueueProcessingFargateServiceProps.getTaskSubnets()
taskSubnets
- The subnets to associate with the service.this
public QueueProcessingFargateServiceProps.Builder image(ContainerImage image)
QueueProcessingServiceBaseProps.getImage()
image
- The image used to start a container. This parameter is required.this
public QueueProcessingFargateServiceProps.Builder capacityProviderStrategies(java.util.List<? extends CapacityProviderStrategy> capacityProviderStrategies)
QueueProcessingServiceBaseProps.getCapacityProviderStrategies()
capacityProviderStrategies
- A list of Capacity Provider strategies used to place a service.this
public QueueProcessingFargateServiceProps.Builder circuitBreaker(DeploymentCircuitBreaker circuitBreaker)
QueueProcessingServiceBaseProps.getCircuitBreaker()
circuitBreaker
- Whether to enable the deployment circuit breaker.
If this property is defined, circuit breaker will be implicitly
enabled.this
public QueueProcessingFargateServiceProps.Builder cluster(ICluster cluster)
QueueProcessingServiceBaseProps.getCluster()
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.this
public QueueProcessingFargateServiceProps.Builder command(java.util.List<java.lang.String> command)
QueueProcessingServiceBaseProps.getCommand()
command
- The command that is passed to the container.
If you provide a shell command as a single string, you have to quote command-line arguments.this
public QueueProcessingFargateServiceProps.Builder deploymentController(DeploymentController deploymentController)
QueueProcessingServiceBaseProps.getDeploymentController()
deploymentController
- Specifies which deployment controller to use for the service.
For more information, see
Amazon ECS Deployment Typesthis
@Deprecated public QueueProcessingFargateServiceProps.Builder desiredTaskCount(java.lang.Number desiredTaskCount)
QueueProcessingServiceBaseProps.getDesiredTaskCount()
desiredTaskCount
- The desired number of instantiations of the task definition to keep running on the service.this
public QueueProcessingFargateServiceProps.Builder enableEcsManagedTags(java.lang.Boolean enableEcsManagedTags)
QueueProcessingFargateServiceProps#getEnableEcsManagedTags
enableEcsManagedTags
- Specifies whether to enable Amazon ECS managed tags for the tasks within the service.
For more information, see
Tagging Your Amazon ECS Resourcesthis
public QueueProcessingFargateServiceProps.Builder enableLogging(java.lang.Boolean enableLogging)
QueueProcessingServiceBaseProps.getEnableLogging()
enableLogging
- Flag to indicate whether to enable logging.this
public QueueProcessingFargateServiceProps.Builder environment(java.util.Map<java.lang.String,java.lang.String> environment)
QueueProcessingServiceBaseProps.getEnvironment()
environment
- The environment variables to pass to the container.
The variable QUEUE_NAME
with value queue.queueName
will
always be passed.this
public QueueProcessingFargateServiceProps.Builder family(java.lang.String family)
QueueProcessingServiceBaseProps.getFamily()
family
- The name of a family that the task definition is registered to.
A family groups multiple versions of a task definition.this
public QueueProcessingFargateServiceProps.Builder logDriver(LogDriver logDriver)
QueueProcessingServiceBaseProps.getLogDriver()
logDriver
- The log driver to use.this
public QueueProcessingFargateServiceProps.Builder maxHealthyPercent(java.lang.Number maxHealthyPercent)
QueueProcessingServiceBaseProps.getMaxHealthyPercent()
maxHealthyPercent
- The maximum number of tasks, specified as a percentage of the Amazon ECS service's DesiredCount value, that can run in a service during a deployment.this
public QueueProcessingFargateServiceProps.Builder maxReceiveCount(java.lang.Number maxReceiveCount)
QueueProcessingServiceBaseProps.getMaxReceiveCount()
maxReceiveCount
- The maximum number of times that a message can be received by consumers.
When this value is exceeded for a message the message will be automatically sent to the Dead Letter Queue.this
public QueueProcessingFargateServiceProps.Builder maxScalingCapacity(java.lang.Number maxScalingCapacity)
QueueProcessingServiceBaseProps.getMaxScalingCapacity()
maxScalingCapacity
- Maximum capacity to scale to.this
public QueueProcessingFargateServiceProps.Builder minHealthyPercent(java.lang.Number minHealthyPercent)
QueueProcessingServiceBaseProps.getMinHealthyPercent()
minHealthyPercent
- The minimum number of tasks, specified as a percentage of the Amazon ECS service's DesiredCount value, that must continue to run and remain healthy during a deployment.this
public QueueProcessingFargateServiceProps.Builder minScalingCapacity(java.lang.Number minScalingCapacity)
QueueProcessingServiceBaseProps.getMinScalingCapacity()
minScalingCapacity
- Minimum capacity to scale to.this
public QueueProcessingFargateServiceProps.Builder propagateTags(PropagatedTagSource propagateTags)
QueueProcessingServiceBaseProps.getPropagateTags()
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.this
public QueueProcessingFargateServiceProps.Builder queue(IQueue queue)
QueueProcessingServiceBaseProps.getQueue()
queue
- A queue for which to process items from.
If specified and this is a FIFO queue, the queue name must end in the string '.fifo'. See
CreateQueuethis
public QueueProcessingFargateServiceProps.Builder retentionPeriod(Duration retentionPeriod)
QueueProcessingServiceBaseProps.getRetentionPeriod()
retentionPeriod
- The number of seconds that Dead Letter Queue retains a message.this
public QueueProcessingFargateServiceProps.Builder scalingSteps(java.util.List<? extends ScalingInterval> scalingSteps)
QueueProcessingServiceBaseProps.getScalingSteps()
scalingSteps
- The intervals for scaling based on the SQS queue's ApproximateNumberOfMessagesVisible metric.
Maps a range of metric values to a particular scaling behavior. See
Simple and Step Scaling Policies for Amazon EC2 Auto Scalingthis
public QueueProcessingFargateServiceProps.Builder secrets(java.util.Map<java.lang.String,? extends Secret> secrets)
QueueProcessingServiceBaseProps.getSecrets()
secrets
- The secret to expose to the container as an environment variable.this
public QueueProcessingFargateServiceProps.Builder serviceName(java.lang.String serviceName)
QueueProcessingServiceBaseProps.getServiceName()
serviceName
- The name of the service.this
public QueueProcessingFargateServiceProps.Builder visibilityTimeout(Duration visibilityTimeout)
QueueProcessingServiceBaseProps.getVisibilityTimeout()
visibilityTimeout
- Timeout of processing a single message.
After dequeuing, the processor has this much time to handle the message and delete it from the queue
before it becomes visible again for dequeueing by another processor. Values must be between 0 and (12 hours).this
public QueueProcessingFargateServiceProps.Builder vpc(IVpc vpc)
QueueProcessingServiceBaseProps.getVpc()
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.this
public QueueProcessingFargateServiceProps build()
QueueProcessingFargateServiceProps
java.lang.NullPointerException
- if any required attribute was not provided