Skip to content

Bedrock  >  Structures  >  AutomatedReasoningPolicyDefinitionVariable

AutomatedReasoningPolicyDefinitionVariable

Structure Class

AutomatedReasoningPolicyDefinitionVariable dataclass

Represents a variable in an Automated Reasoning policy. Variables represent concepts that can have values assigned during natural language translation.

Attributes

description class-attribute instance-attribute
description: str = field(repr=False)

The description of the variable that explains what it represents and how users might refer to it. Clear and comprehensive descriptions are essential for accurate natural language translation.

name class-attribute instance-attribute
name: str = field(repr=False)

The name of the variable. Use descriptive names that clearly indicate the concept being represented.

type class-attribute instance-attribute
type: str = field(repr=False)

The data type of the variable. Valid types include bool, int, real, enum, and custom types that you can provide.