Interface CfnAutomatedReasoningPolicy.PolicyDefinitionVariableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAutomatedReasoningPolicy.PolicyDefinitionVariableProperty.Jsii$Proxy
- Enclosing class:
CfnAutomatedReasoningPolicy
@Stability(Stable)
public static interface CfnAutomatedReasoningPolicy.PolicyDefinitionVariableProperty
extends software.amazon.jsii.JsiiSerializable
A variable defined within the policy that can be used in rules.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.bedrock.*; PolicyDefinitionVariableProperty policyDefinitionVariableProperty = PolicyDefinitionVariableProperty.builder() .description("description") .name("name") .type("type") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnAutomatedReasoningPolicy.PolicyDefinitionVariableProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of a variable defined in the policy.- See Also:
-
getName
The name of a variable defined in the policy.- See Also:
-
getType
The data type of a variable defined in the policy.- See Also:
-
builder
@Stability(Stable) static CfnAutomatedReasoningPolicy.PolicyDefinitionVariableProperty.Builder builder()
-