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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-automatedreasoningpolicyversion.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-automatedreasoningpolicyversion.html#cfn-bedrock-automatedreasoningpolicyversion-lastupdateddefinitionhash

policy_arn

The Amazon Resource Name (ARN) of the policy.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-automatedreasoningpolicyversion.html#cfn-bedrock-automatedreasoningpolicyversion-policyarn

tags

The tags associated with the Automated Reasoning policy version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-automatedreasoningpolicyversion.html#cfn-bedrock-automatedreasoningpolicyversion-tags