Class: Aws::Bedrock::Types::AutomatedReasoningPolicyDeleteVariableAnnotation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyDeleteVariableAnnotation
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
An annotation for removing a variable from an Automated Reasoning policy.
Constant Summary collapse
- SENSITIVE =
[:name]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the variable to delete from the policy.
Instance Attribute Details
#name ⇒ String
The name of the variable to delete from the policy. The variable must not be referenced by any rules.
1418 1419 1420 1421 1422 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1418 class AutomatedReasoningPolicyDeleteVariableAnnotation < Struct.new( :name) SENSITIVE = [:name] include Aws::Structure end |