pub struct SqlApplicationConfigurationUpdate {
pub input_updates: Option<Vec<InputUpdate>>,
pub output_updates: Option<Vec<OutputUpdate>>,
pub reference_data_source_updates: Option<Vec<ReferenceDataSourceUpdate>>,
}Expand description
Describes updates to the input streams, destination streams, and reference data sources for an SQL-based Kinesis Data Analytics application.
Fields§
§input_updates: Option<Vec<InputUpdate>>The array of InputUpdate objects describing the new input streams used by the application.
output_updates: Option<Vec<OutputUpdate>>The array of OutputUpdate objects describing the new destination streams used by the application.
reference_data_source_updates: Option<Vec<ReferenceDataSourceUpdate>>The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application.
Trait Implementations§
Source§impl Clone for SqlApplicationConfigurationUpdate
impl Clone for SqlApplicationConfigurationUpdate
Source§fn clone(&self) -> SqlApplicationConfigurationUpdate
fn clone(&self) -> SqlApplicationConfigurationUpdate
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 SqlApplicationConfigurationUpdate
impl Default for SqlApplicationConfigurationUpdate
Source§fn default() -> SqlApplicationConfigurationUpdate
fn default() -> SqlApplicationConfigurationUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for SqlApplicationConfigurationUpdate
impl PartialEq for SqlApplicationConfigurationUpdate
Source§fn eq(&self, other: &SqlApplicationConfigurationUpdate) -> bool
fn eq(&self, other: &SqlApplicationConfigurationUpdate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlApplicationConfigurationUpdate
Auto Trait Implementations§
impl Freeze for SqlApplicationConfigurationUpdate
impl RefUnwindSafe for SqlApplicationConfigurationUpdate
impl Send for SqlApplicationConfigurationUpdate
impl Sync for SqlApplicationConfigurationUpdate
impl Unpin for SqlApplicationConfigurationUpdate
impl UnwindSafe for SqlApplicationConfigurationUpdate
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