Struct gapi_grpc::google::cloud::securitycenter::v1::notification_config::StreamingConfig[][src]

pub struct StreamingConfig {
    pub filter: String,
}

The config for streaming-based notifications, which send each event as soon as it is detected.

Fields

filter: String

Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND.

Restrictions have the form <field> <operator> <value> and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource.

The supported operators are:

The supported value types are:

Trait Implementations

impl Clone for StreamingConfig[src]

impl Debug for StreamingConfig[src]

impl Default for StreamingConfig[src]

impl Message for StreamingConfig[src]

impl PartialEq<StreamingConfig> for StreamingConfig[src]

impl StructuralPartialEq for StreamingConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for StreamingConfig

impl Send for StreamingConfig

impl Sync for StreamingConfig

impl Unpin for StreamingConfig

impl UnwindSafe for StreamingConfig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]