interface CfnKnowledgeBasePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnKnowledgeBasePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnKnowledgeBasePolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnKnowledgeBasePolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnKnowledgeBasePolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnKnowledgeBasePolicyMixinProps |
Properties for CfnKnowledgeBasePolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
declare const policyDocument: any;
const cfnKnowledgeBasePolicyMixinProps: bedrock.CfnKnowledgeBasePolicyMixinProps = {
knowledgeBaseId: 'knowledgeBaseId',
policyDocument: policyDocument,
};
Properties
| Name | Type | Description |
|---|---|---|
| knowledge | string | The unique identifier of the knowledge base. |
| policy | any | The IAM policy document defining access permissions for the knowledge base. |
knowledgeBaseId?
Type:
string
(optional)
The unique identifier of the knowledge base.
policyDocument?
Type:
any
(optional)
The IAM policy document defining access permissions for the knowledge base.

.NET
Go
Java
Python
TypeScript