interface CfnAutomatedReasoningPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAutomatedReasoningPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAutomatedReasoningPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAutomatedReasoningPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAutomatedReasoningPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAutomatedReasoningPolicyMixinProps |
Properties for CfnAutomatedReasoningPolicyPropsMixin.
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 cfnAutomatedReasoningPolicyMixinProps: bedrock_mixins.CfnAutomatedReasoningPolicyMixinProps = {
description: 'description',
forceDelete: false,
kmsKeyId: 'kmsKeyId',
name: 'name',
policyDefinition: {
rules: [{
alternateExpression: 'alternateExpression',
expression: 'expression',
id: 'id',
}],
types: [{
description: 'description',
name: 'name',
values: [{
description: 'description',
value: 'value',
}],
}],
variables: [{
description: 'description',
name: 'name',
type: 'type',
}],
version: 'version',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the policy. |
| force | boolean | IResolvable | Specifies whether to force delete the automated reasoning policy even if it has active resources. |
| kms | string | The KMS key with which the Policy's assets will be encrypted at rest. |
| name? | string | The name 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. |
description?
Type:
string
(optional)
The description of the policy.
forceDelete?
Type:
boolean | IResolvable
(optional, default: false)
Specifies whether to force delete the automated reasoning policy even if it has active resources.
When false , Amazon Bedrock validates if all artifacts have been deleted (e.g. policy version, test case, test result) for a policy before deletion. When true , Amazon Bedrock will delete the policy and all its artifacts without validation. Default is false
kmsKeyId?
Type:
string
(optional)
The KMS key with which the Policy's assets will be encrypted at rest.
name?
Type:
string
(optional)
The name 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.

.NET
Go
Java
Python
TypeScript