pub struct ApplicationCodeConfiguration {
pub code_content: Option<CodeContent>,
pub code_content_type: String,
}Expand description
Describes code configuration for a Java-based Kinesis Data Analytics application.
Fields§
§code_content: Option<CodeContent>The location and type of the application code.
code_content_type: StringSpecifies whether the code content is in text or zip format.
Trait Implementations§
Source§impl Clone for ApplicationCodeConfiguration
impl Clone for ApplicationCodeConfiguration
Source§fn clone(&self) -> ApplicationCodeConfiguration
fn clone(&self) -> ApplicationCodeConfiguration
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 ApplicationCodeConfiguration
impl Debug for ApplicationCodeConfiguration
Source§impl Default for ApplicationCodeConfiguration
impl Default for ApplicationCodeConfiguration
Source§fn default() -> ApplicationCodeConfiguration
fn default() -> ApplicationCodeConfiguration
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplicationCodeConfiguration
impl PartialEq for ApplicationCodeConfiguration
Source§fn eq(&self, other: &ApplicationCodeConfiguration) -> bool
fn eq(&self, other: &ApplicationCodeConfiguration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ApplicationCodeConfiguration
Auto Trait Implementations§
impl !Freeze for ApplicationCodeConfiguration
impl RefUnwindSafe for ApplicationCodeConfiguration
impl Send for ApplicationCodeConfiguration
impl Sync for ApplicationCodeConfiguration
impl Unpin for ApplicationCodeConfiguration
impl UnwindSafe for ApplicationCodeConfiguration
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