@Stability(value=Stable) public static final class QueueProcessingFargateServiceProps.Builder extends Object implements software.amazon.jsii.Builder<QueueProcessingFargateServiceProps>
QueueProcessingFargateServiceProps
Constructor and Description |
---|
Builder() |
@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder assignPublicIp(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
@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder containerName(String containerName)
QueueProcessingFargateServiceProps.getContainerName()
containerName
- Optional name for the container added.this
@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 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
@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder securityGroups(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
@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder taskSubnets(SubnetSelection taskSubnets)
QueueProcessingFargateServiceProps.getTaskSubnets()
taskSubnets
- The subnets to associate with the service.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 capacityProviderStrategies(List<? extends CapacityProviderStrategy> capacityProviderStrategies)
QueueProcessingServiceBaseProps.getCapacityProviderStrategies()
capacityProviderStrategies
- A list of Capacity Provider strategies used to place a service.this
@Stability(value=Stable) 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
@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 deploymentController(DeploymentController deploymentController)
QueueProcessingServiceBaseProps.getDeploymentController()
deploymentController
- Specifies which deployment controller to use for the service.
For more information, see
Amazon ECS Deployment Typesthis
@Stability(value=Deprecated) @Deprecated 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)
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
@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 maxHealthyPercent(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
@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 minHealthyPercent(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
@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder minScalingCapacity(Number minScalingCapacity)
QueueProcessingServiceBaseProps.getMinScalingCapacity()
minScalingCapacity
- Minimum 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<? 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
@Stability(value=Stable) public QueueProcessingFargateServiceProps.Builder secrets(Map<String,? extends 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 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
@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()
build
in interface software.amazon.jsii.Builder<QueueProcessingFargateServiceProps>
QueueProcessingFargateServiceProps
NullPointerException
- if any required attribute was not providedCopyright © 2022. All rights reserved.