GuardrailAutomatedReasoningImpossibleFinding
dataclass
¶
Indicates that no valid claims can be made due to logical contradictions in the premises or rules.
Source code in src/aws_sdk_bedrock_runtime/models.py
2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 | |
Attributes¶
contradicting_rules
class-attribute
instance-attribute
¶
contradicting_rules: list[GuardrailAutomatedReasoningRule] | None = None
The automated reasoning policy rules that contradict the claims and/or premises in the input.
logic_warning
class-attribute
instance-attribute
¶
logic_warning: GuardrailAutomatedReasoningLogicWarning | None = None
Indication of a logic issue with the translation without needing to consider the automated reasoning policy rules.
translation
class-attribute
instance-attribute
¶
translation: GuardrailAutomatedReasoningTranslation | None = None
The logical translation of the input that this finding evaluates.