@Stability(value=Stable) public static final class QueueProcessingFargateServiceProps.Builder extends Object
QueueProcessingFargateServiceProps| Constructor and Description |
|---|
Builder() |
@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder cpu(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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder memoryLimitMiB(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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder image(ContainerImage image)
QueueProcessingServiceBaseProps.getImage()image - The image used to start a container. This parameter is required.this@Stability(value=Stable) 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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder command(List<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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder desiredTaskCount(Number desiredTaskCount)
QueueProcessingServiceBaseProps.getDesiredTaskCount()desiredTaskCount - The desired number of instantiations of the task definition to keep running on the service.this@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder enableEcsManagedTags(Boolean enableEcsManagedTags)
QueueProcessingServiceBaseProps.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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder enableLogging(Boolean enableLogging)
QueueProcessingServiceBaseProps.getEnableLogging()enableLogging - Flag to indicate whether to enable logging.this@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder environment(Map<String,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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder family(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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder logDriver(LogDriver logDriver)
QueueProcessingServiceBaseProps.getLogDriver()logDriver - The log driver to use.this@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder maxReceiveCount(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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder maxScalingCapacity(Number maxScalingCapacity)
QueueProcessingServiceBaseProps.getMaxScalingCapacity()maxScalingCapacity - Maximum capacity to scale to.this@Stability(value=Stable) 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@Stability(value=Stable) 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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder retentionPeriod(Duration retentionPeriod)
QueueProcessingServiceBaseProps.getRetentionPeriod()retentionPeriod - The number of seconds that Dead Letter Queue retains a message.this@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder scalingSteps(List<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@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder secrets(Map<String,Secret> secrets)
QueueProcessingServiceBaseProps.getSecrets()secrets - The secret to expose to the container as an environment variable.this@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder serviceName(String serviceName)
QueueProcessingServiceBaseProps.getServiceName()serviceName - The name of the service.this@Stability(value=Stable) 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@Stability(value=Stable) public QueueProcessingFargateServiceProps build()
QueueProcessingFargateServicePropsNullPointerException - if any required attribute was not providedCopyright © 2020. All rights reserved.