CfnPolicyEngineMixinProps

class aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnPolicyEngineMixinProps(*, description=None, encryption_key_arn=None, name=None, tags=None)

Bases: object

Properties for CfnPolicyEnginePropsMixin.

Parameters:
  • description (Optional[str]) – A human-readable description of the policy engine’s purpose and scope.

  • encryption_key_arn (Optional[str]) – The ARN of the KMS key used to encrypt the policy engine data.

  • name (Optional[str]) – The customer-assigned immutable name for the policy engine.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of tags to assign to the policy engine.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-policyengine.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_bedrockagentcore import mixins as bedrockagentcore_mixins

cfn_policy_engine_mixin_props = bedrockagentcore_mixins.CfnPolicyEngineMixinProps(
    description="description",
    encryption_key_arn="encryptionKeyArn",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

A human-readable description of the policy engine’s purpose and scope.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-policyengine.html#cfn-bedrockagentcore-policyengine-description

encryption_key_arn

The ARN of the KMS key used to encrypt the policy engine data.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-policyengine.html#cfn-bedrockagentcore-policyengine-encryptionkeyarn

name

The customer-assigned immutable name for the policy engine.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-policyengine.html#cfn-bedrockagentcore-policyengine-name

tags

A list of tags to assign to the policy engine.

See:

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