interface PolicyDefinitionRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAutomatedReasoningPolicyPropsMixin_PolicyDefinitionRuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionRuleProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionRuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAutomatedReasoningPolicyPropsMixin » PolicyDefinitionRuleProperty |
A rule within the policy definition that defines logical constraints.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const policyDefinitionRuleProperty: bedrock_mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionRuleProperty = {
alternateExpression: 'alternateExpression',
expression: 'expression',
id: 'id',
};
Properties
| Name | Type | Description |
|---|---|---|
| alternate | string | An alternative expression for the policy rule. |
| expression? | string | The logical expression that defines the rule. |
| id? | string | The unique identifier for the policy definition rule. |
alternateExpression?
Type:
string
(optional)
An alternative expression for the policy rule.
expression?
Type:
string
(optional)
The logical expression that defines the rule.
id?
Type:
string
(optional)
The unique identifier for the policy definition rule.

.NET
Go
Java
Python
TypeScript