interface CfnAutomatedReasoningPolicyVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnAutomatedReasoningPolicyVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnAutomatedReasoningPolicyVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnAutomatedReasoningPolicyVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnAutomatedReasoningPolicyVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const cfnAutomatedReasoningPolicyVersionMixinProps: bedrock_mixins.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