TelemetryRuleRuleDestinationConfigurationCloudtrailParametersAdvancedEventSelectorFieldSelector constructor

const TelemetryRuleRuleDestinationConfigurationCloudtrailParametersAdvancedEventSelectorFieldSelector({
  1. Input<List<String>?>? endsWiths,
  2. Input<List<String>?>? equals,
  3. required Input<String> field,
  4. Input<List<String>?>? notEndsWiths,
  5. Input<List<String>?>? notEquals,
  6. Input<List<String>?>? notStartsWiths,
  7. Input<List<String>?>? startsWiths,
})

Creates a new TelemetryRuleRuleDestinationConfigurationCloudtrailParametersAdvancedEventSelectorFieldSelector. endsWiths Match if the field value ends with one of the specified values. equals Match if the field value equals one of the specified values. field Name of the field to use for selection. notEndsWiths Match if the field value does not end with one of the specified values. notEquals Match if the field value does not equal any of the specified values. notStartsWiths Match if the field value does not start with any of the specified values. startsWiths Match if the field value starts with one of the specified values.

Implementation

const TelemetryRuleRuleDestinationConfigurationCloudtrailParametersAdvancedEventSelectorFieldSelector({
  this.endsWiths,
  this.equals,
  required this.field,
  this.notEndsWiths,
  this.notEquals,
  this.notStartsWiths,
  this.startsWiths,
});