Guía de inglés para developers
Vocabulario de AWS: términos cloud que todo developer necesita en inglés
7 de agosto de 2026
AWS es la plataforma cloud más grande del mundo y la que más aparece en las ofertas de trabajo. Este glosario bilingüe cubre los 35 términos más importantes de AWS, desde EC2 y S3 hasta IAM y CloudWatch, con ejemplos de uso reales.
Puntos clave
- EC2 proporciona máquinas virtuales (instancias). Lambda ejecuta funciones serverless sin servidores que gestionar.
- S3 almacena objetos (archivos) en buckets. RDS proporciona bases de datos relacionales gestionadas. DynamoDB es la opción NoSQL gestionada.
- IAM controla el acceso. Usa siempre roles y políticas de mínimo privilegio, no credenciales en el código.
- Una VPC es tu red privada. Los grupos de seguridad actúan como firewalls para cada recurso.
- CloudWatch recopila logs y métricas. Configura alarmas para saber cuándo algo va mal.
1. Compute
1. Cómputo
Servicios para ejecutar código: máquinas virtuales, funciones serverless y autoescalado.
EC2 (Elastic Compute Cloud)
EC2 (máquinas virtuales)
Amazon's virtual machine service. You launch instances with the OS, CPU, and memory you need, and pay by the hour or second.
“Spin up a t3.medium EC2 instance for the staging environment.”
instance
instancia
A single running virtual machine on EC2. Each instance has an instance type that defines its CPU, memory, and network capacity.
“The instance ran out of memory. We need to upgrade to a larger instance type.”
AMI (Amazon Machine Image)
AMI (imagen de máquina)
A pre-configured template used to launch an EC2 instance. It includes the OS, application server, and any pre-installed software.
“Create a custom AMI with the app pre-installed so new instances are ready faster.”
Lambda
Lambda (funciones serverless)
AWS's serverless compute service. You deploy a function and AWS runs it in response to events without you managing any server.
“We trigger a Lambda function every time a new file is uploaded to S3.”
function
función (Lambda)
The unit of deployment in Lambda. Each function is a single piece of code with its own runtime, memory limit, and timeout.
“The function timed out after 15 seconds. Increase the timeout limit or optimise the code.”
trigger
disparador / evento
The event source that invokes a Lambda function. Common triggers include S3 uploads, API Gateway requests, SQS messages, and scheduled events.
“Add an S3 trigger so the thumbnail function runs whenever a new image is uploaded.”
auto-scaling group
grupo de autoescalado
A collection of EC2 instances that scales automatically based on demand or a schedule. When load increases, new instances are launched; when it drops, instances are terminated.
“The auto-scaling group added three instances during the traffic spike and removed them afterwards.”
load balancer
balanceador de carga
Distributes incoming traffic across multiple EC2 instances or containers. AWS offers the Application Load Balancer (ALB) for HTTP traffic and the Network Load Balancer (NLB) for TCP.
“Point the load balancer at the auto-scaling group so traffic is distributed evenly.”
2. Storage and databases
2. Almacenamiento y bases de datos
Almacenamiento de objetos, bases de datos relacionales gestionadas y NoSQL a escala.
S3 (Simple Storage Service)
S3 (almacenamiento de objetos)
AWS's object storage service. You store any file as an object inside a bucket. S3 is highly durable and used for backups, static assets, data lakes, and more.
“Upload build artifacts to S3 so all environments can pull the same version.”
bucket
bucket (cubo de almacenamiento)
The top-level container in S3. Bucket names are globally unique. Each bucket can hold an unlimited number of objects.
“Create a private bucket for database backups and a public bucket for static assets.”
object
objeto
A file stored in S3. An object consists of the file data and its metadata (content type, size, custom tags, etc.).
“The object key is the full path: images/2026/banner.png.”
key
clave (nombre del objeto)
The unique identifier for an object within a bucket. The key is the full path, including any folder-like prefixes.
“Use a key prefix like logs/2026/ to organise log files by year.”
RDS (Relational Database Service)
RDS (base de datos gestionada)
A managed relational database service that supports PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server. AWS handles backups, patching, and replication.
“We moved from a self-managed Postgres to RDS to eliminate manual patching.”
DynamoDB
DynamoDB (base de datos NoSQL)
AWS's fully managed NoSQL database. DynamoDB scales automatically and offers single-digit millisecond latency at any scale.
“We use DynamoDB for the session store because it handles millions of requests per second.”
table
tabla (DynamoDB)
The primary resource in DynamoDB. A table stores items (records) identified by a partition key and optional sort key.
“Create a sessions table with userId as the partition key and sessionId as the sort key.”
3. Security and networking
3. Seguridad y red
Control de acceso, redes privadas y firewalls.
IAM (Identity and Access Management)
IAM (gestión de identidad y acceso)
The AWS service that controls who can do what in your account. IAM manages users, groups, roles, and policies.
“Create an IAM role for the Lambda function so it can read from S3 without hardcoded credentials.”
role
rol
An IAM identity that can be assumed by AWS services, EC2 instances, or Lambda functions. Roles have policies attached that define their permissions.
“Attach the S3ReadOnly policy to the EC2 instance role instead of embedding AWS keys in the code.”
policy
política
A JSON document that defines which actions are allowed or denied on which resources. Policies are attached to users, groups, or roles.
“Write a least-privilege policy that allows only s3:GetObject on the specific bucket.”
permission
permiso
An individual action allowed or denied by a policy. Permissions follow the format service:action, for example s3:PutObject or ec2:DescribeInstances.
“The function failed because it is missing the dynamodb:PutItem permission.”
VPC (Virtual Private Cloud)
VPC (red virtual privada)
A logically isolated network you define inside AWS. Resources in a VPC can communicate privately without going through the public internet.
“Launch the RDS instance inside the VPC so only the application servers can reach it.”
subnet
subred
A range of IP addresses within a VPC. Public subnets have a route to the internet gateway. Private subnets do not.
“Place the database in a private subnet so it has no public internet access.”
security group
grupo de seguridad
A virtual firewall for EC2 instances and other resources. Security groups control inbound and outbound traffic at the instance level.
“Update the security group to allow inbound traffic on port 443 from the load balancer only.”
ARN (Amazon Resource Name)
ARN (nombre de recurso de Amazon)
A globally unique identifier for any AWS resource. Format: arn:aws:service:region:account-id:resource. Used in IAM policies and API calls.
“Copy the ARN from the Lambda console and paste it into the IAM policy as the resource.”
4. Monitoring and tools
4. Monitoreo y herramientas
Observabilidad, entrega de contenido, infraestructura global y herramientas para developers.
CloudWatch
CloudWatch (monitoreo)
AWS's monitoring and observability service. It collects logs, metrics, and events from AWS resources and custom applications.
“Set up a CloudWatch dashboard to track Lambda invocations, errors, and p99 latency.”
alarm
alarma
A CloudWatch resource that watches a metric and triggers an action when a threshold is breached. Common actions include sending an SNS notification or scaling an auto-scaling group.
“Create an alarm that pages the on-call team when error rate exceeds 5% for 5 minutes.”
metric
métrica
A time-series data point collected by CloudWatch. AWS services publish metrics automatically; you can also publish custom metrics from your application.
“Publish a custom metric for checkout success rate so we can alarm on business-level errors.”
CloudFront
CloudFront (CDN)
AWS's content delivery network (CDN). CloudFront caches content at edge locations around the world to reduce latency for end users.
“Put CloudFront in front of S3 to serve static assets with low latency globally.”
distribution
distribución (CloudFront)
The CloudFront resource you create to serve content. A distribution defines the origin (S3 bucket, ALB, etc.) and the caching and routing rules.
“Update the distribution to add a custom domain and SSL certificate.”
region
región
A geographic area where AWS operates data centres. Each region is independent. You choose a region based on latency, compliance, and cost.
“Deploy to eu-west-1 (Ireland) to comply with European data residency requirements.”
availability zone
zona de disponibilidad
One or more discrete data centres within a region, each with independent power, cooling, and networking. Deploying across multiple availability zones increases resilience.
“Spread the RDS instances across two availability zones for automatic failover.”
SDK (Software Development Kit)
SDK (kit de desarrollo de software)
A library that lets you interact with AWS services from your application code. AWS offers SDKs for Python (boto3), JavaScript, Go, Java, and more.
“Use the AWS SDK for Python to upload files to S3 from the data pipeline.”
CLI (Command Line Interface)
CLI (interfaz de línea de comandos)
The aws command-line tool for managing AWS resources from a terminal. The CLI uses the same credentials and permissions as the SDK.
“Run aws s3 ls to list all buckets in the account.”
cost explorer
explorador de costes
The AWS tool for visualising, analysing, and forecasting your cloud spending. You can filter by service, region, tag, and time period.
“Use Cost Explorer to find which Lambda functions are driving the spike in compute costs.”
Practice this vocabulary for free
Interactive exercises with real developer scenarios. No account required.
Related articles
¿Listo para practicar tu inglés en el trabajo?
Lingua-e tiene ejercicios interactivos basados en conversaciones reales de developers: standups, code reviews, retrospectivas y más. Practica hasta que salga solo.
Prueba Lingua-e gratis
Escrito por
Roxana LafuenteFundadora de Lingua-e
Roxana Lafuente es ingeniera de software con más de 8 años de experiencia. Al comienzo de su carrera, aunque ya había aprobado el First Certificate in English, se bloqueaba cada vez que tenía que hablar en el standup diario. Era un problema que nadie estaba resolviendo. Después de más de 2.000 standups, descubrió qué es lo que realmente construye la fluidez: practicar situaciones que se parecen a tu trabajo real. Creó Lingua-e para que otros developers no tuvieran que tomar el camino largo para sentirse seguros trabajando en un entorno de desarrollo internacional.