interface PolicyDefinitionRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAutomatedReasoningPolicyPropsMixin_PolicyDefinitionRuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionRuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionRuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const policyDefinitionRuleProperty: bedrock.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