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