interface CfnPolicyEngineProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnPolicyEngineProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnPolicyEngineProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnPolicyEngineProps |
Python | aws_cdk.aws_bedrockagentcore.CfnPolicyEngineProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnPolicyEngineProps |
Properties for defining a CfnPolicyEngine.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const cfnPolicyEngineProps: bedrockagentcore.CfnPolicyEngineProps = {
name: 'name',
// the properties below are optional
description: 'description',
encryptionKeyArn: 'encryptionKeyArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The customer-assigned immutable name for the policy engine. |
| description? | string | A human-readable description of the policy engine's purpose and scope. |
| encryption | string | The ARN of the KMS key used to encrypt the policy engine data. |
| tags? | Cfn[] | A list of tags to assign to the policy engine. |
name
Type:
string
The customer-assigned immutable name for the policy engine.
description?
Type:
string
(optional)
A human-readable description of the policy engine's purpose and scope.
encryptionKeyArn?
Type:
string
(optional)
The ARN of the KMS key used to encrypt the policy engine data.
tags?
Type:
Cfn[]
(optional)
A list of tags to assign to the policy engine.

.NET
Go
Java
Python
TypeScript