#[non_exhaustive]pub struct ApplicationCodeConfigurationUpdate {
pub code_content_type_update: Option<CodeContentType>,
pub code_content_update: Option<CodeContentUpdate>,
}Expand description
Describes code configuration updates for an application. This is supported for a Flink-based Kinesis Data Analytics application or a SQL-based Kinesis Data Analytics application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.code_content_type_update: Option<CodeContentType>Describes updates to the code content type.
code_content_update: Option<CodeContentUpdate>Describes updates to the code content of an application.
Implementations§
source§impl ApplicationCodeConfigurationUpdate
impl ApplicationCodeConfigurationUpdate
sourcepub fn code_content_type_update(&self) -> Option<&CodeContentType>
pub fn code_content_type_update(&self) -> Option<&CodeContentType>
Describes updates to the code content type.
sourcepub fn code_content_update(&self) -> Option<&CodeContentUpdate>
pub fn code_content_update(&self) -> Option<&CodeContentUpdate>
Describes updates to the code content of an application.
source§impl ApplicationCodeConfigurationUpdate
impl ApplicationCodeConfigurationUpdate
sourcepub fn builder() -> ApplicationCodeConfigurationUpdateBuilder
pub fn builder() -> ApplicationCodeConfigurationUpdateBuilder
Creates a new builder-style object to manufacture ApplicationCodeConfigurationUpdate.
Trait Implementations§
source§impl Clone for ApplicationCodeConfigurationUpdate
impl Clone for ApplicationCodeConfigurationUpdate
source§fn clone(&self) -> ApplicationCodeConfigurationUpdate
fn clone(&self) -> ApplicationCodeConfigurationUpdate
Returns a copy 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 PartialEq for ApplicationCodeConfigurationUpdate
impl PartialEq for ApplicationCodeConfigurationUpdate
source§fn eq(&self, other: &ApplicationCodeConfigurationUpdate) -> bool
fn eq(&self, other: &ApplicationCodeConfigurationUpdate) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ApplicationCodeConfigurationUpdate
Auto Trait Implementations§
impl RefUnwindSafe for ApplicationCodeConfigurationUpdate
impl Send for ApplicationCodeConfigurationUpdate
impl Sync for ApplicationCodeConfigurationUpdate
impl Unpin for ApplicationCodeConfigurationUpdate
impl UnwindSafe for ApplicationCodeConfigurationUpdate
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.