Data Source: aws_db_event_categories

Example Usage

List the event categories of all the RDS resources.

data "aws_db_event_categories" "example" {}

output "example" {
  value = data.aws_db_event_categories.example.event_categories
}

List the event categories specific to the RDS resource db-snapshot.

data "aws_db_event_categories" "example" {
  source_type = "db-snapshot"
}

output "example" {
  value = data.aws_db_event_categories.example.event_categories
}

Argument Reference

This data source supports the following arguments:

Attribute Reference

This data source exports the following attributes in addition to the arguments above: