interface PolicyDefinitionTypeProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_bedrock.CfnAutomatedReasoningPolicy.PolicyDefinitionTypeProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAutomatedReasoningPolicy_PolicyDefinitionTypeProperty | 
|  Java | software.amazon.awscdk.services.bedrock.CfnAutomatedReasoningPolicy.PolicyDefinitionTypeProperty | 
|  Python | aws_cdk.aws_bedrock.CfnAutomatedReasoningPolicy.PolicyDefinitionTypeProperty | 
|  TypeScript | aws-cdk-lib»aws_bedrock»CfnAutomatedReasoningPolicy»PolicyDefinitionTypeProperty | 
A custom type definition within the policy.
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 policyDefinitionTypeProperty: bedrock.CfnAutomatedReasoningPolicy.PolicyDefinitionTypeProperty = {
  name: 'name',
  values: [{
    value: 'value',
    // the properties below are optional
    description: 'description',
  }],
  // the properties below are optional
  description: 'description',
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | The name of a custom type defined in the policy. | 
| values | IResolvable | (IResolvable | Policy)[] | The possible values for a custom type defined in the policy. | 
| description? | string | A description of the custom type defined in the policy. | 
name
Type:
string
The name of a custom type defined in the policy.
values
Type:
IResolvable | (IResolvable | Policy)[]
The possible values for a custom type defined in the policy.
description?
Type:
string
(optional)
A description of the custom type defined in the policy.
