interface CfnAutomatedReasoningPolicyProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bedrock.CfnAutomatedReasoningPolicyProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAutomatedReasoningPolicyProps |
![]() | software.amazon.awscdk.services.bedrock.CfnAutomatedReasoningPolicyProps |
![]() | aws_cdk.aws_bedrock.CfnAutomatedReasoningPolicyProps |
![]() | aws-cdk-lib » aws_bedrock » CfnAutomatedReasoningPolicyProps |
Properties for defining a CfnAutomatedReasoningPolicy
.
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-lib';
const cfnAutomatedReasoningPolicyProps: bedrock.CfnAutomatedReasoningPolicyProps = {
name: 'name',
// the properties below are optional
description: 'description',
policyDefinition: {
rules: [{
expression: 'expression',
id: 'id',
// the properties below are optional
alternateExpression: 'alternateExpression',
}],
types: [{
name: 'name',
values: [{
value: 'value',
// the properties below are optional
description: 'description',
}],
// the properties below are optional
description: 'description',
}],
variables: [{
description: 'description',
name: 'name',
type: 'type',
}],
version: 'version',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the policy. |
description? | string | The description of the policy. |
policy | IResolvable | Policy | The complete policy definition generated by the build workflow, containing all rules, variables, and custom types extracted from the source documents. |
tags? | Cfn [] | The tags associated with the Automated Reasoning policy. |
name
Type:
string
The name of the policy.
description?
Type:
string
(optional)
The description of the policy.
policyDefinition?
Type:
IResolvable
|
Policy
(optional)
The complete policy definition generated by the build workflow, containing all rules, variables, and custom types extracted from the source documents.
tags?
Type:
Cfn
[]
(optional)
The tags associated with the Automated Reasoning policy.