interface CfnDiscovererMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EventSchemas.CfnDiscovererMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseventschemas#CfnDiscovererMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.eventschemas.CfnDiscovererMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_eventschemas.CfnDiscovererMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eventschemas » CfnDiscovererMixinProps |
Properties for CfnDiscovererPropsMixin.
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/cfn-property-mixins';
const cfnDiscovererMixinProps: eventschemas.CfnDiscovererMixinProps = {
crossAccount: false,
description: 'description',
sourceArn: 'sourceArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| source | string | IEvent | The ARN of the event bus. |
| tags? | Tags[] | Tags associated with the resource. |
crossAccount?
Type:
boolean | IResolvable
(optional, default: true)
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.
sourceArn?
Type:
string | IEvent
(optional)
The ARN of the event bus.
tags?
Type:
Tags[]
(optional)
Tags associated with the resource.

.NET
Go
Java
Python
TypeScript