pub struct CodeContentUpdate {
pub s3_content_location_update: Option<S3ContentLocationUpdate>,
pub text_content_update: Option<String>,
pub zip_file_content_update: Option<Bytes>,
}Expand description
Describes an update to the code of a Java-based Kinesis Data Analytics application.
Fields§
§s3_content_location_update: Option<S3ContentLocationUpdate>Describes an update to the location of code for an application.
text_content_update: Option<String>Describes an update to the text code for an application.
zip_file_content_update: Option<Bytes>Describes an update to the zipped code for an application.
Trait Implementations§
Source§impl Clone for CodeContentUpdate
impl Clone for CodeContentUpdate
Source§fn clone(&self) -> CodeContentUpdate
fn clone(&self) -> CodeContentUpdate
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 Debug for CodeContentUpdate
impl Debug for CodeContentUpdate
Source§impl Default for CodeContentUpdate
impl Default for CodeContentUpdate
Source§fn default() -> CodeContentUpdate
fn default() -> CodeContentUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for CodeContentUpdate
impl PartialEq for CodeContentUpdate
Source§impl Serialize for CodeContentUpdate
impl Serialize for CodeContentUpdate
impl StructuralPartialEq for CodeContentUpdate
Auto Trait Implementations§
impl !Freeze for CodeContentUpdate
impl RefUnwindSafe for CodeContentUpdate
impl Send for CodeContentUpdate
impl Sync for CodeContentUpdate
impl Unpin for CodeContentUpdate
impl UnwindSafe for CodeContentUpdate
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