interface PolicyDefinitionVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAutomatedReasoningPolicyPropsMixin_PolicyDefinitionVariableProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionVariableProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAutomatedReasoningPolicyPropsMixin.PolicyDefinitionVariableProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const policyDefinitionVariableProperty: bedrock.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