interface CatalogProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnChannel.CatalogProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnChannel_CatalogProperty |
Java | software.amazon.awscdk.services.msk.CfnChannel.CatalogProperty |
Python | aws_cdk.aws_msk.CfnChannel.CatalogProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnChannel » CatalogProperty |
Catalog configuration of the destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from 'aws-cdk-lib';
const catalogProperty: msk.CfnChannel.CatalogProperty = {
catalogArn: 'catalogArn',
warehouseLocation: 'warehouseLocation',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The ARN of the catalog. |
| warehouse | string | The warehouse location. |
catalogArn?
Type:
string
(optional)
The ARN of the catalog.
warehouseLocation?
Type:
string
(optional)
The warehouse location.

.NET
Go
Java
Python
TypeScript