interface CfnPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnPolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnPolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnPolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnPolicyMixinProps |
Properties for CfnPolicyPropsMixin.
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 cfnPolicyMixinProps: bedrockagentcore.CfnPolicyMixinProps = {
definition: {
cedar: {
statement: 'statement',
},
},
description: 'description',
name: 'name',
policyEngineId: 'policyEngineId',
validationMode: 'validationMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| definition? | IResolvable | Policy | The definition structure for policies. |
| description? | string | A human-readable description of the policy's purpose and functionality. |
| name? | string | The customer-assigned immutable name for the policy. |
| policy | string | The identifier of the policy engine which contains this policy. |
| validation | string | The validation mode for the policy. |
definition?
Type:
IResolvable | Policy
(optional)
The definition structure for policies.
Encapsulates different policy formats.
description?
Type:
string
(optional)
A human-readable description of the policy's purpose and functionality.
name?
Type:
string
(optional)
The customer-assigned immutable name for the policy.
Must be unique within the policy engine.
policyEngineId?
Type:
string
(optional)
The identifier of the policy engine which contains this policy.
validationMode?
Type:
string
(optional)
The validation mode for the policy.
Determines how Cedar analyzer validation results are handled.

.NET
Go
Java
Python
TypeScript