Struct google_cloudiot1::EventNotificationConfig[][src]

pub struct EventNotificationConfig {
    pub pubsub_topic_name: Option<String>,
    pub subfolder_matches: Option<String>,
}

The configuration for forwarding telemetry events.

This type is not used in any activity, and only used as part of another schema.

Fields

A Cloud Pub/Sub topic name. For example, projects/myProject/topics/deviceEvents.

If the subfolder name matches this string exactly, this configuration will be used. The string must not include the leading '/' character. If empty, all strings are matched. This field is used only for telemetry events; subfolders are not supported for state changes.

Trait Implementations

impl Default for EventNotificationConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for EventNotificationConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EventNotificationConfig
[src]

Formats the value using the given formatter. Read more

impl Part for EventNotificationConfig
[src]

Auto Trait Implementations