CfnDiscovererMixinProps

class aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnDiscovererMixinProps(*, cross_account=None, description=None, source_arn=None, tags=None)

Bases: object

Properties 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: - true

  • description (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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html

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.

Default:
  • true

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-crossaccount

description

A description for the discoverer.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-description

source_arn

The ARN of the event bus.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-sourcearn

tags

Tags associated with the resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eventschemas-discoverer.html#cfn-eventschemas-discoverer-tags