CfnAutomatedReasoningPolicyVersionProps
- class aws_cdk.aws_bedrock.CfnAutomatedReasoningPolicyVersionProps(*, policy_arn, last_updated_definition_hash=None, tags=None)
Bases:
object
Properties for defining a
CfnAutomatedReasoningPolicyVersion
.- Parameters:
policy_arn (
str
) – The Amazon Resource Name (ARN) of the policy.last_updated_definition_hash (
Optional
[str
]) – The hash of the policy definition that was last updated.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags associated with the Automated Reasoning policy version.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_bedrock as bedrock cfn_automated_reasoning_policy_version_props = bedrock.CfnAutomatedReasoningPolicyVersionProps( policy_arn="policyArn", # the properties below are optional last_updated_definition_hash="lastUpdatedDefinitionHash", tags=[CfnTag( key="key", value="value" )] )
Attributes
- last_updated_definition_hash
The hash of the policy definition that was last updated.
- policy_arn
The Amazon Resource Name (ARN) of the policy.
- tags
The tags associated with the Automated Reasoning policy version.