CfnPolicyEngineProps
- class aws_cdk.aws_bedrockagentcore.CfnPolicyEngineProps(*, name, description=None, encryption_key_arn=None, tags=None)
Bases:
objectProperties for defining a
CfnPolicyEngine.- Parameters:
name (
str) – The customer-assigned immutable name for the policy engine.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.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of tags to assign to the policy engine.
- See:
- 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 import aws_bedrockagentcore as bedrockagentcore cfn_policy_engine_props = bedrockagentcore.CfnPolicyEngineProps( name="name", # the properties below are optional description="description", encryption_key_arn="encryptionKeyArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A human-readable description of the policy engine’s purpose and scope.
- encryption_key_arn
The ARN of the KMS key used to encrypt the policy engine data.
- name
The customer-assigned immutable name for the policy engine.
- tags
A list of tags to assign to the policy engine.