interface CfnDiscovererProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EventSchemas.CfnDiscovererProps |
Java | software.amazon.awscdk.services.eventschemas.CfnDiscovererProps |
Python | aws_cdk.aws_eventschemas.CfnDiscovererProps |
TypeScript | @aws-cdk/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 * as eventschemas from '@aws-cdk/aws-eventschemas';
const cfnDiscovererProps: eventschemas.CfnDiscovererProps = {
sourceArn: 'sourceArn',
// the properties below are optional
crossAccount: false,
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
source | string | The ARN of the event bus. |
cross | boolean | IResolvable | Allows for the discovery of the event schemas that are sent to the event bus from another account. |
description? | string | A description for the discoverer. |
tags? | Tags [] | 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:
Tags
[]
(optional)
Tags associated with the resource.