aws-cdk-lib.aws_eventschemas.CfnDiscovererProps

interface CfnDiscovererProps

LanguageType name
.NETAmazon.CDK.AWS.EventSchemas.CfnDiscovererProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awseventschemas#CfnDiscovererProps
Javasoftware.amazon.awscdk.services.eventschemas.CfnDiscovererProps
Pythonaws_cdk.aws_eventschemas.CfnDiscovererProps
TypeScript aws-cdk-lib » aws_eventschemas » CfnDiscovererProps

Properties for defining a CfnDiscoverer.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eventschemas as eventschemas } from 'aws-cdk-lib';
const cfnDiscovererProps: eventschemas.CfnDiscovererProps = {
  sourceArn: 'sourceArn',

  // the properties below are optional
  crossAccount: false,
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
sourceArnstringThe ARN of the event bus.
crossAccount?boolean | IResolvableAllows for the discovery of the event schemas that are sent to the event bus from another account.
description?stringA description for the discoverer.
tags?TagsEntryProperty[]Tags associated with the resource.

sourceArn

Type: string

The ARN of the event bus.


crossAccount?

Type: boolean | IResolvable (optional)

Allows for the discovery of the event schemas that are sent to the event bus from another account.


description?

Type: string (optional)

A description for the discoverer.


tags?

Type: TagsEntryProperty[] (optional)

Tags associated with the resource.