interface PolicyDefinitionVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAutomatedReasoningPolicyPropsMixin_PolicyDefinitionVariableProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionVariableProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionVariableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnAutomatedReasoningPolicyPropsMixin » PolicyDefinitionVariableProperty |
A variable defined within the policy that can be used in rules.
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 policyDefinitionVariableProperty: bedrock_mixins.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionVariableProperty = {
description: 'description',
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of a variable defined in the policy. |
| name? | string | The name of a variable defined in the policy. |
| type? | string | The data type of a variable defined in the policy. |
description?
Type:
string
(optional)
A description of a variable defined in the policy.
name?
Type:
string
(optional)
The name of a variable defined in the policy.
type?
Type:
string
(optional)
The data type of a variable defined in the policy.

.NET
Go
Java
Python
TypeScript