pub struct EventGridStreamInputDataSourceProperties {
pub subscriber: Option<EventHubV2StreamInputDataSource>,
pub schema: Option<EventGridEventSchemaType>,
pub storage_accounts: Vec<StorageAccount>,
pub event_types: Vec<String>,
}Expand description
The properties that are associated with an event grid input containing stream data.
Fields§
§subscriber: Option<EventHubV2StreamInputDataSource>Describes an Event Hub input data source that contains stream data.
schema: Option<EventGridEventSchemaType>Supported Event Grid schema types.
storage_accounts: Vec<StorageAccount>A list of one or more Azure Storage accounts. Required on PUT (CreateOrReplace) requests.
event_types: Vec<String>List of Event Types that are supported by the Event Grid adapter.
Implementations§
Trait Implementations§
Source§impl Clone for EventGridStreamInputDataSourceProperties
impl Clone for EventGridStreamInputDataSourceProperties
Source§fn clone(&self) -> EventGridStreamInputDataSourceProperties
fn clone(&self) -> EventGridStreamInputDataSourceProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for EventGridStreamInputDataSourceProperties
impl Default for EventGridStreamInputDataSourceProperties
Source§fn default() -> EventGridStreamInputDataSourceProperties
fn default() -> EventGridStreamInputDataSourceProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventGridStreamInputDataSourceProperties
impl<'de> Deserialize<'de> for EventGridStreamInputDataSourceProperties
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EventGridStreamInputDataSourceProperties
impl PartialEq for EventGridStreamInputDataSourceProperties
Source§fn eq(&self, other: &EventGridStreamInputDataSourceProperties) -> bool
fn eq(&self, other: &EventGridStreamInputDataSourceProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EventGridStreamInputDataSourceProperties
Auto Trait Implementations§
impl Freeze for EventGridStreamInputDataSourceProperties
impl RefUnwindSafe for EventGridStreamInputDataSourceProperties
impl Send for EventGridStreamInputDataSourceProperties
impl Sync for EventGridStreamInputDataSourceProperties
impl Unpin for EventGridStreamInputDataSourceProperties
impl UnwindSafe for EventGridStreamInputDataSourceProperties
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more