comp
Comprehend
AI & MLAWS
General
General information about the service.
Chat
Powered by AITalk 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 Documentation
terraform
1resource "aws_comprehend_entity_recognizer" "main" {2 name = "comp-${var.environment}"3 data_access_role_arn = aws_iam_role.comprehend.arn4 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.