Class: Aws::PinpointSMSVoiceV2::Types::ConditionalRule

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpointsmsvoicev2/types.rb

Overview

A single conditional rule that resolves to a field behavior when all of its conditions evaluate to true. Conditions within a rule are combined with logical AND: all conditions must match for the rule to fire.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#conditional_validationTypes::ConditionalValidation

Optional per-rule validation constraints (minimum length, maximum length, regex pattern, allowed select values) that override the field's default validation when this rule matches.



381
382
383
384
385
386
387
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 381

class ConditionalRule < Struct.new(
  :conditions,
  :rule_behavior,
  :conditional_validation)
  SENSITIVE = []
  include Aws::Structure
end

#conditionsArray<Types::FieldCondition>

The conditions that must all evaluate to true for this rule to match. Conditions are combined with logical AND. Use multiple rules with the same RuleBehavior to express logical OR.

Returns:



381
382
383
384
385
386
387
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 381

class ConditionalRule < Struct.new(
  :conditions,
  :rule_behavior,
  :conditional_validation)
  SENSITIVE = []
  include Aws::Structure
end

#rule_behaviorString

The field behavior that applies when all conditions in this rule match. Valid values are REQUIRED, OPTIONAL, and DISALLOWED.

Returns:

  • (String)


381
382
383
384
385
386
387
# File 'lib/aws-sdk-pinpointsmsvoicev2/types.rb', line 381

class ConditionalRule < Struct.new(
  :conditions,
  :rule_behavior,
  :conditional_validation)
  SENSITIVE = []
  include Aws::Structure
end