interface PolicyDefinitionTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAutomatedReasoningPolicyPropsMixin_PolicyDefinitionTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const policyDefinitionTypeProperty: bedrock_mixins.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