interface CfnAutomatedReasoningPolicyVersionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnAutomatedReasoningPolicyVersionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnAutomatedReasoningPolicyVersionProps |
Java | software.amazon.awscdk.services.bedrock.CfnAutomatedReasoningPolicyVersionProps |
Python | aws_cdk.aws_bedrock.CfnAutomatedReasoningPolicyVersionProps |
TypeScript | aws-cdk-lib » aws_bedrock » CfnAutomatedReasoningPolicyVersionProps |
Properties for defining a CfnAutomatedReasoningPolicyVersion.
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-lib';
const cfnAutomatedReasoningPolicyVersionProps: bedrock.CfnAutomatedReasoningPolicyVersionProps = {
policyArn: 'policyArn',
// the properties below are optional
lastUpdatedDefinitionHash: 'lastUpdatedDefinitionHash',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| policy | string | The Amazon Resource Name (ARN) of the policy. |
| last | string | The hash of the policy definition that was last updated. |
| tags? | Cfn[] | The tags associated with the Automated Reasoning policy version. |
policyArn
Type:
string
The Amazon Resource Name (ARN) of the policy.
lastUpdatedDefinitionHash?
Type:
string
(optional)
The hash of the policy definition that was last updated.
tags?
Type:
Cfn[]
(optional)
The tags associated with the Automated Reasoning policy version.

.NET
Go
Java
Python
TypeScript