interface PolicyDefinitionTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAutomatedReasoningPolicyPropsMixin_PolicyDefinitionTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnAutomatedReasoningPolicyPropsMixin » 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/cfn-property-mixins';
const policyDefinitionTypeProperty: bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty = {
description: 'description',
name: 'name',
values: [{
description: 'description',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the custom type defined in the policy. |
| 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?
Type:
string
(optional)
A description of the custom type defined in the policy.
name?
Type:
string
(optional)
The name of a custom type defined in the policy.
values?
Type:
IResolvable | (IResolvable | Policy)[]
(optional)
The possible values for a custom type defined in the policy.

.NET
Go
Java
Python
TypeScript