Maven Dependencies for Amazon AWS API in Java
Published
Updated
To quickly set up your Maven project, include the following bill of materials (BOM) within the
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.12.522</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
The provided version number is dynamically updated from Maven Central
Now you can selectively include individual components such as S3, EC2, DynamoDB, etc. See below for a complete list of all the different API’s and their respective xml’s. There is a lot here.
File and Object Storage
- S3 (Simple Storage Service)
- EBS (Elastic Block Service)
- EFS (Elastic File System)
- Glacier
- FSX
- Athena
- Data Pipeline
- Lake Formation
Events, Streaming and Messaging
Web, CDN, DNS, and Routing
- Route 53
- Cloudfront
- Direct Connect
- App Mesh
- Global Accelerator
- API Gateway
- ELB (Elastic Load Balancing)
- Lightsail
Security, SSO, Roles, Compliance, and Access Control
- WAF (Web App Firewall)
- SSO (Single Sign On)
- Security Hub
- Secrets Manager
- Shield
- Macie
- Inspector
- Network Firewall
- IAM (Identity and Access Management)
- Detective
- Guard Duty
- Directory Service
- Cognito
- Cloud Directory
- Cloud HSM
- FMS (Firewall Manager)
- RAM (Resource Access Manager)
Databases (SQL, document, and graph)
Compute
Orchestration
Logging, Tracing, and Analysis
Internet of Things IOT
Developer Tools, CICD, IAS
- Image Builder
- Serverless Application Repository
- Code Artifact
- Amplify
- Code Commit
- Code Deploy
- Code Build
- Cloud9
- Code Pipeline
- Code Star
- Device Farm
- Ops Works
- Cloud Formation
- Mobile
Machine Learning, OCR, and AI
- Robomaker
- Sage Maker
- Textract
- Comprehend
- Lex
- Machine Learning
- Polly
- Transcribe
- Rekognition
- Translate
- Augmented AI
- Personalize
- Elastic Inference
Enterprise Services
- Snowball
- Storage Gateway
- Outposts
- ECR (Elastic Container Registry)
- Alexa for Business
- Chime
- Workmail
- Connect
- Service Catalog
- Organizations
- License Manager
- Work Link
- Transfer
- Work Docs
- Workspaces
- Discovery
- Datasync
Analytics and Search
Cloud and Cost Management and Reporting
- Application Autoscaling
- Budgets
- Cost and Usage Report
- Cost Explorer
- Greengrass
- Backup
- Compute Optimizer
- Auto Scaling
- App Config
- App Sync
- SSM (Systems Manager Agent)
- Health
- Server Migration
- Forecast
- Migration Hub
Oddballs
S3 (Simple Storage Service)
Highly scalable and reliable object (file) storage
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
</dependency>
DynamoDB
Fully managed NoSQL key-value database
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-dynamodb</artifactId>
</dependency>
Step Functions
JSON based state machines and orchestration.
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-stepfunctions</artifactId>
</dependency>
SNS (Simple Notification System)
Fully managed SMS (text message) service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sns</artifactId>
</dependency>
SQS (Simple Queue Service)
Fully managed MQ (Message Queueing)
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sqs</artifactId>
</dependency>
MQ
Managed Message Broker in ActiveMQ and RabbitMQ
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-mq</artifactId>
</dependency>
RDS (Relational Database Service)
Distributed (SQL) relational database service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-rds</artifactId>
</dependency>
EC2 (Elastic Cloud Compute)
Highly scalable cloud computing for virtual servers
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ec2</artifactId>
</dependency>
EBS (Elastic Block Service)
High performance block (file) storage for use with EC2
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ebs</artifactId>
</dependency>
Snowball
Physical transportation of massive data collections
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-snowball</artifactId>
</dependency>
Backup
Managed backup service for AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-backup</artifactId>
</dependency>
EFS (Elastic File System)
Scalable NFS file storage for bridging cloud and on premise resources
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-efs</artifactId>
</dependency>
Storage Gateway
Hybrid cloud storage solution for on premise resources
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-storagegateway</artifactId>
</dependency>
Glacier
Cold storage of S3 data
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-glacier</artifactId>
</dependency>
FSX
Managed SMB file storage
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-fsx</artifactId>
</dependency>
Budgets
Plan and calculate infrastructure costs
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-budgets</artifactId>
</dependency>
Cost and Usage Report
Estimate charges for your account
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-costandusagereport</artifactId>
</dependency>
Cost Explorer
Charts and visualizations of AWS costs
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-costexplorer</artifactId>
</dependency>
Greengrass
Securely execute AWS functions directly from an IOT edge device
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-greengrass</artifactId>
</dependency>
IOT
Charts and visualizations of AWS costs
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-iot</artifactId>
</dependency>
IOT Things Graph
Abstract things as models to make them accessible via API
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-iotthingsgraph</artifactId>
</dependency>
ElastiCache
In-memory data store and cache for data intensive operations
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-elasticache</artifactId>
</dependency>
Redshift
Relational data warehousing solution with support for massive scaling
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-redshift</artifactId>
</dependency>
Neptune
Fully managed, highly available graph database
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-neptune</artifactId>
</dependency>
Lambda
Serverless compute, execute code without provisioning a server. Make sure not to confuse this SDK with the aws-lambda-java-*
libraries. They are separate components.
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-lambda</artifactId>
</dependency>
Batch
Batch computing for massive workloads
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-batch</artifactId>
</dependency>
Elastic Beanstalk
Orchestration service for deploying and scaling web applications
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-elasticbeanstalk</artifactId>
</dependency>
Lightsail
Fully managed, push-button web application ecosystem
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-lightsail</artifactId>
</dependency>
Outposts
All of the AWS infrastructure, on-premise
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-outposts</artifactId>
</dependency>
Serverless Application Repository
Fully managed, push-button web application ecosystem
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-serverlessapplicationrepository</artifactId>
</dependency>
Application Autoscaling
Service for autoscaling your infrastructure
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-applicationautoscaling</artifactId>
</dependency>
Compute Optimizer
Provides pricing recommendations to reduce compute cost
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-computeoptimizer</artifactId>
</dependency>
ECS (Elastic Container Service)
Fully managed orchestration service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ecs</artifactId>
</dependency>
ECR (Elastic Container Registry)
Fully managed Docker container registry
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ecr</artifactId>
</dependency>
EKS (Elastic Kubernetes Service)
Fully managed Kubernetes service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-eks</artifactId>
</dependency>
Braket
Fully managed quantum computing service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-braket</artifactId>
</dependency>
Image Builder
Build and manages images for EC2
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-imagebuilder</artifactId>
</dependency>
Managed Blockchain
Managed blockchain networks
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-managedblockchain</artifactId>
</dependency>
Cloudfront
Content Delivery Network (CDN)
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloudfront</artifactId>
</dependency>
Route 53
Domain name services for AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-route53</artifactId>
</dependency>
Direct Connect
Low-latency private connections to AWS infrastructure
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-directconnect</artifactId>
</dependency>
App Mesh
Domain name services for AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-route53</artifactId>
</dependency>
Global Accelerator
Optimized network routing for improved throughput
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-globalaccelerator</artifactId>
</dependency>
API Gateway
RESTful API management
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-apigatewayv2</artifactId>
</dependency>
Game Lift
Managed game server scaling
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-gamelift</artifactId>
</dependency>
Kafka
Fully managed Apache Kafka data streaming platform
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-kafka</artifactId>
</dependency>
Athena
Perform SQL queries on data within S3
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-athena</artifactId>
</dependency>
Cloud Search
Easy to use search solution for your website or app
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloudsearch</artifactId>
</dependency>
Data Pipeline
Move data between compute and storage services at scheduled intervals
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-datapipeline</artifactId>
</dependency>
ELB (Elastic Load Balancing)
Dynamic load balancing for AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-elasticloadbalancingv2</artifactId>
</dependency>
Elasticsearch
Managed version of the popular search engine
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-elasticsearch</artifactId>
</dependency>
EMR (Elastic Map Reduce)
Managed map reduce engines such as Hadoop and Spark
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-emr</artifactId>
</dependency>
Glue
Serverless data preparation and ETL service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-glue</artifactId>
</dependency>
Kinesis
Managed platform for ingestion of large scale data stream processing
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-kinesis</artifactId>
</dependency>
Kinesis Video
Large scale processing of streamed video ingestion
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-kinesisvideo</artifactId>
</dependency>
Kinesis Analytics
Analytics engine for streamed data within Kinesis
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-kinesisanalyticsv2</artifactId>
</dependency>
Lake Formation
Build a data lake in AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-lakeformation</artifactId>
</dependency>
Quicksight
Advanced business intelligence and decision support system
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-quicksight</artifactId>
</dependency>
WAF (Web App Firewall)
Configurable network protection
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-wafv2</artifactId>
</dependency>
SSO (Single Sign On)
Federated authentication for AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sso</artifactId>
</dependency>
Security Hub
Security alerts and compliance
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-securityhub</artifactId>
</dependency>
Secrets Manager
Secure credential and token storage
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-secretsmanager</artifactId>
</dependency>
Shield
Security alerts and compliance
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-shield</artifactId>
</dependency>
Macie
Fully managed data protection and compliance enforcement
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-macie2</artifactId>
</dependency>
Inspector
Automated security assessment and compliance
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-inspector</artifactId>
</dependency>
Network Firewall
Managed network protection for your VPC’s
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-networkfirewall</artifactId>
</dependency>
IAM (Identity and Access Management)
Control access to AWS services and infrastructure
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-iam</artifactId>
</dependency>
Detective
Identify root cause of potential security issues
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-detective</artifactId>
</dependency>
Guard Duty
Automated intelligent threat detection
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-guardduty</artifactId>
</dependency>
Directory Service
Managed AD (Active Directory) service for your enterprise
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-directory</artifactId>
</dependency>
Cognito
Managed user account management, everything from sign up to login
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cognitoidentiy</artifactId>
</dependency>
Code Artifact
Fully managed code artifact repository
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-codeartifact</artifactId>
</dependency>
Alexa for Business
Integrate your business with Alexa
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-alexaforbusiness</artifactId>
</dependency>
Amplify
Rapidly develop full stack applications on AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-amplify</artifactId>
</dependency>
Cloud Directory
Build complex directories in the cloud
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-clouddirectory</artifactId>
</dependency>
Cloud HSM
Hardware security module and secret storage
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloudhsmv2</artifactId>
</dependency>
Chime
Video conferencing and meetings
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-chime</artifactId>
</dependency>
FMS (Firewall Manager)
Deploy and manage firewalls
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-fms</artifactId>
</dependency>
Device Farm
Mobile and web app testing
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-devicefarm</artifactId>
</dependency>
Robomaker
Build and deploy smart robots
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-robomaker</artifactId>
</dependency>
RAM (Resource Access Manager)
Securely share and manage access to AWS resources
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ram</artifactId>
</dependency>
Workmail
Managed, secure mail for businesses
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-workmail</artifactId>
</dependency>
Code Commit
Managed source control service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-codecommit</artifactId>
</dependency>
Code Deploy
Fully managed software deployments to EC2 and more
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-codedeploy</artifactId>
</dependency>
Code Build
Fully managed continuous integration
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-codebuild</artifactId>
</dependency>
Cloud9
Cloud based IDE (Integrated Development Environment)
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloud9</artifactId>
</dependency>
Code Pipeline
Fully managed continuous delivery service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pipeline</artifactId>
</dependency>
Code Star
Cloud based development service for building AWS applications
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-codestar</artifactId>
</dependency>
Xray
Distributed microservice tracing system
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-xray</artifactId>
</dependency>
Connect
Cloud based customer contact center service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-connect</artifactId>
</dependency>
Groundstation
Control satellite communications
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-groundstation</artifactId>
</dependency>
Pinpoint
Customer engagement and marketing
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pinpoint</artifactId>
</dependency>
App Sync
Managed service for developing GraphQL APIs
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-appsync</artifactId>
</dependency>
Cloud Watch
AWS application and infrastructure monitoring
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloudwatch</artifactId>
</dependency>
App Config
Create, manage, and deploy application configurations
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-appconfig</artifactId>
</dependency>
Auto Scaling
Customized application scaling plans
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-autoscaling</artifactId>
</dependency>
Service Catalog
Create and manage catalogs of IT Services within AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-servicecatalog</artifactId>
</dependency>
Cloud Trail
Governance, compliance, and operational auditing of AWS infrastructure
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloudtrail</artifactId>
</dependency>
Cloud Formation
AWS infrastructure as code
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloudformation</artifactId>
</dependency>
Organizations
Programmatically provision AWS accounts and privileges
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-organizations</artifactId>
</dependency>
Ops Works
Configuration management with Chef and Puppet
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-opsworks</artifactId>
</dependency>
SSM (Systems Manager Agent)
Manage the configuration of your EC2 instances
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ssm</artifactId>
</dependency>
Event Bridge
Route events from your apps in a serverless manner
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-eventbridge</artifactId>
</dependency>
Health
Prepare for planned activities in AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-health</artifactId>
</dependency>
License Manager
Handle software licensing and maintenance
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-licensemanager</artifactId>
</dependency>
Mobile
Rapid development environment for mobile apps
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-mobile</artifactId>
</dependency>
Work Link
Secure mobile access to your organization’s intranet websites
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-worklink</artifactId>
</dependency>
Work Docs
Document collaboration environment for enterprises
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-workdocs</artifactId>
</dependency>
Transfer
Managed file transfer platforms including FTP, SFTP, FTPS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-transfer</artifactId>
</dependency>
Workspaces
Document collaboration environment for enterprises
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-workspaces</artifactId>
</dependency>
Sage Maker
Fully managed machine learning model training suite
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-sagemaker</artifactId>
</dependency>
Textract
Fully managed machine-learning based OCR solution
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-textract</artifactId>
</dependency>
Comprehend
Natural Language Processing (NLP) suite
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-comprehend</artifactId>
</dependency>
Datasync
Simplified data transfer service for AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-datasync</artifactId>
</dependency>
Discovery
Plan migration to AWS by analyzing current datacenter data
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-discovery</artifactId>
</dependency>
DMS (Database Migration Service)
Zero downtime migration of databases into AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-dms</artifactId>
</dependency>
Lex
Build AI powered Chat Bots
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-lex</artifactId>
</dependency>
Machine Learning
Managed machine learning service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-machinelearning</artifactId>
</dependency>
Forecast
Time series prediction using machine learning
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-forecast</artifactId>
</dependency>
Fraud Detector
Identify online fraud activities using machine learning
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-frauddetector</artifactId>
</dependency>
Elastic Inference
Low cost machine learning instances via GPU compute
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-elasticinference</artifactId>
</dependency>
Augmented AI
Build workflows for human review of ML predictions
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-augmentedairuntime</artifactId>
</dependency>
Kendra
Intelligent search using machine learning
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-kendra</artifactId>
</dependency>
Personalize
Machine learning service for individualized customer recommendations
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-personalize</artifactId>
</dependency>
Polly
Text to speech
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-polly</artifactId>
</dependency>
Migration Hub
Monitor AWS migrations
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-migrationhub</artifactId>
</dependency>
Rekognition
Face recognition service
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-rekognition</artifactId>
</dependency>
Server Migration
Migrate on-premise workloads to AWS
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-servermigration</artifactId>
</dependency>
Transcribe
Convert voice to text
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-transcribe</artifactId>
</dependency>
Translate
Translation service for multilingual operations
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-translate</artifactId>
</dependency>