interface CfnPolicyEngineMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPolicyEngineMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPolicyEngineMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPolicyEngineMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPolicyEngineMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPolicyEngineMixinProps |
Properties for CfnPolicyEnginePropsMixin.
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/cfn-property-mixins';
const cfnPolicyEngineMixinProps: bedrockagentcore.CfnPolicyEngineMixinProps = {
description: 'description',
encryptionKeyArn: 'encryptionKeyArn',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| name? | string | The customer-assigned immutable name for the policy engine. |
| tags? | Cfn[] | A list of tags to assign to 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.
name?
Type:
string
(optional)
The customer-assigned immutable name for the policy engine.
tags?
Type:
Cfn[]
(optional)
A list of tags to assign to the policy engine.

.NET
Go
Java
Python
TypeScript