Create Discoverer
schemas_create_discoverer | R Documentation |
Creates a discoverer¶
Description¶
Creates a discoverer.
Usage¶
schemas_create_discoverer(Description, SourceArn, CrossAccount, Tags)
Arguments¶
Description |
A description for the discoverer. |
SourceArn |
[required] The ARN of the event bus. |
CrossAccount |
Support discovery of schemas in events sent to the bus from another account. (default: true). |
Tags |
Tags associated with the resource. |
Value¶
A list with the following syntax:
list(
Description = "string",
DiscovererArn = "string",
DiscovererId = "string",
SourceArn = "string",
State = "STARTED"|"STOPPED",
CrossAccount = TRUE|FALSE,
Tags = list(
"string"
)
)
Request syntax¶
svc$create_discoverer(
Description = "string",
SourceArn = "string",
CrossAccount = TRUE|FALSE,
Tags = list(
"string"
)
)