interface AutomatedReasoningPolicyVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Bedrock.AutomatedReasoningPolicyVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrock#AutomatedReasoningPolicyVersionReference |
Java | software.amazon.awscdk.interfaces.bedrock.AutomatedReasoningPolicyVersionReference |
Python | aws_cdk.interfaces.aws_bedrock.AutomatedReasoningPolicyVersionReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrock » AutomatedReasoningPolicyVersionReference |
A reference to a AutomatedReasoningPolicyVersion resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as interfaces_aws_bedrock } from 'aws-cdk-lib/interfaces';
const automatedReasoningPolicyVersionReference: interfaces_aws_bedrock.AutomatedReasoningPolicyVersionReference = {
policyArn: 'policyArn',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| policy | string | The PolicyArn of the AutomatedReasoningPolicyVersion resource. |
| version | string | The Version of the AutomatedReasoningPolicyVersion resource. |
policyArn
Type:
string
The PolicyArn of the AutomatedReasoningPolicyVersion resource.
version
Type:
string
The Version of the AutomatedReasoningPolicyVersion resource.

.NET
Go
Java
Python
TypeScript