interface CfnKnowledgeBasePolicyProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnKnowledgeBasePolicyProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnKnowledgeBasePolicyProps |
Java | software.amazon.awscdk.services.bedrock.CfnKnowledgeBasePolicyProps |
Python | aws_cdk.aws_bedrock.CfnKnowledgeBasePolicyProps |
TypeScript | aws-cdk-lib » aws_bedrock » CfnKnowledgeBasePolicyProps |
Properties for defining a CfnKnowledgeBasePolicy.
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-lib';
declare const policyDocument: any;
const cfnKnowledgeBasePolicyProps: bedrock.CfnKnowledgeBasePolicyProps = {
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
The unique identifier of the knowledge base.
policyDocument
Type:
any
The IAM policy document defining access permissions for the knowledge base.

.NET
Go
Java
Python
TypeScript