Email Routing Catch All Args
data class EmailRoutingCatchAllArgs(val actions: Output<List<EmailRoutingCatchAllActionArgs>>? = null, val enabled: Output<Boolean>? = null, val matchers: Output<List<EmailRoutingCatchAllMatcherArgs>>? = null, val name: Output<String>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<EmailRoutingCatchAllArgs>
Example Usage
resources:
exampleEmailRoutingCatchAll:
type: cloudflare:EmailRoutingCatchAll
name: example_email_routing_catch_all
properties:
zoneId: 023e105f4ecef8ad9ca31a8372d0c353
actions:
- type: drop
value:
- destinationaddress@example.net
matchers:
- type: all
enabled: true
name: Send to user@example.net rule.
Content copied to clipboard
Import
$ pulumi import cloudflare:index/emailRoutingCatchAll:EmailRoutingCatchAll example '<zone_id>'
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(actions: Output<List<EmailRoutingCatchAllActionArgs>>? = null, enabled: Output<Boolean>? = null, matchers: Output<List<EmailRoutingCatchAllMatcherArgs>>? = null, name: Output<String>? = null, zoneId: Output<String>? = null)