comp

Comprehend

AI & MLAWS
General

General information about the service.

Description

Amazon Comprehend uses natural language processing to extract insights from text.

Service Namespace

AWS::Comprehend::Flywheel

ARN Pattern

arn:aws:comprehend:{region}:{account}:flywheel/{flywheel-name}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

comp-

Length

1-63

Valid Characters

Letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_comprehend_entity_recognizer" "main" {
2 name = "comp-${var.environment}"
3 data_access_role_arn = aws_iam_role.comprehend.arn
4 language_code = "en"
5 input_data_config {
6 entity_types {
7 type = "CUSTOM"
8 }
9 documents { s3_uri = "s3://bucket/documents/" }
10 entity_list { s3_uri = "s3://bucket/entities.csv" }
11 }
12}
Utilities

Utilities to support app deployment or configuration.