interface CfnDiscovererMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EventSchemas.Mixins.CfnDiscovererMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseventschemas/mixins#CfnDiscovererMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.eventschemas.mixins.CfnDiscovererMixinProps |
Python | aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnDiscovererMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_eventschemas » mixins » 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 { mixins as eventschemas_mixins } from '@aws-cdk/mixins-preview/aws-eventschemas';
const cfnDiscovererMixinProps: eventschemas_mixins.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 | 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
(optional)
The ARN of the event bus.
tags?
Type:
Tags[]
(optional)
Tags associated with the resource.

.NET
Go
Java
Python
TypeScript