TelemetryRuleArgs constructor

const TelemetryRuleArgs({
  1. Input<String?>? region,
  2. required Input<TelemetryRuleRule> rule,
  3. required Input<String> ruleName,
  4. Input<Map<String, String>?>? tags,
  5. Input<TelemetryRuleTimeouts?>? timeouts,
})

Creates a new TelemetryRuleArgs. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. rule Configuration block for the telemetry rule. See rule below. ruleName Name of the telemetry rule. Must be between 1 and 100 characters and contain only alphanumeric characters, hyphens, underscores, periods, hash symbols, and forward slashes. Changing this argument forces a new resource to be created. tags Key-value map of resource tags. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. timeouts Optional.

Implementation

const TelemetryRuleArgs({
  this.region,
  required this.rule,
  required this.ruleName,
  this.tags,
  this.timeouts,
});