interface CfnAutomatedReasoningPolicyVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnAutomatedReasoningPolicyVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnAutomatedReasoningPolicyVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnAutomatedReasoningPolicyVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnAutomatedReasoningPolicyVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnAutomatedReasoningPolicyVersionMixinProps |
Properties for CfnAutomatedReasoningPolicyVersionPropsMixin.
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 cfnAutomatedReasoningPolicyVersionMixinProps: bedrock.CfnAutomatedReasoningPolicyVersionMixinProps = {
lastUpdatedDefinitionHash: 'lastUpdatedDefinitionHash',
policyArn: 'policyArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| last | string | The hash of the policy definition that was last updated. |
| policy | string | The Amazon Resource Name (ARN) of the policy. |
| tags? | Cfn[] | The tags associated with the Automated Reasoning policy version. |
lastUpdatedDefinitionHash?
Type:
string
(optional)
The hash of the policy definition that was last updated.
policyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the policy.
tags?
Type:
Cfn[]
(optional)
The tags associated with the Automated Reasoning policy version.

.NET
Go
Java
Python
TypeScript