CfnDiscovererMixinProps
- class aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnDiscovererMixinProps(*, cross_account=None, description=None, source_arn=None, tags=None)
Bases:
objectProperties for CfnDiscovererPropsMixin.
- Parameters:
cross_account (
Union[bool,IResolvable,None]) – Allows for the discovery of the event schemas that are sent to the event bus from another account. Default: - truedescription (
Optional[str]) – A description for the discoverer.source_arn (
Optional[str]) – The ARN of the event bus.tags (
Optional[Sequence[Union[TagsEntryProperty,Dict[str,Any]]]]) – Tags associated with the resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_eventschemas import mixins as eventschemas_mixins cfn_discoverer_mixin_props = eventschemas_mixins.CfnDiscovererMixinProps( cross_account=False, description="description", source_arn="sourceArn", tags=[eventschemas_mixins.CfnDiscovererPropsMixin.TagsEntryProperty( key="key", value="value" )] )
Attributes
- cross_account
Allows for the discovery of the event schemas that are sent to the event bus from another account.
- description
A description for the discoverer.
- source_arn
The ARN of the event bus.
- tags
Tags associated with the resource.