interface PolicyDefinitionTypeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAutomatedReasoningPolicyPropsMixin_PolicyDefinitionTypeValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnAutomatedReasoningPolicyPropsMixin » 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/cfn-property-mixins';
const policyDefinitionTypeValueProperty: bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeValueProperty = {
description: 'description',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the policy definition type value. |
| value? | string | The value associated with a policy definition type. |
description?
Type:
string
(optional)
A description of the policy definition type value.
value?
Type:
string
(optional)
The value associated with a policy definition type.

.NET
Go
Java
Python
TypeScript