Struct aws_sdk_kinesisanalyticsv2::operation::add_application_input::AddApplicationInputInput
source · #[non_exhaustive]pub struct AddApplicationInputInput {
pub application_name: Option<String>,
pub current_application_version_id: Option<i64>,
pub input: Option<Input>,
}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.application_name: Option<String>The name of your existing application to which you want to add the streaming source.
current_application_version_id: Option<i64>The current version of your application. You must provide the ApplicationVersionID or the ConditionalToken.You can use the DescribeApplication operation to find the current application version.
input: Option<Input>The Input to add.
Implementations§
source§impl AddApplicationInputInput
impl AddApplicationInputInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of your existing application to which you want to add the streaming source.
sourcepub fn current_application_version_id(&self) -> Option<i64>
pub fn current_application_version_id(&self) -> Option<i64>
The current version of your application. You must provide the ApplicationVersionID or the ConditionalToken.You can use the DescribeApplication operation to find the current application version.
source§impl AddApplicationInputInput
impl AddApplicationInputInput
sourcepub fn builder() -> AddApplicationInputInputBuilder
pub fn builder() -> AddApplicationInputInputBuilder
Creates a new builder-style object to manufacture AddApplicationInputInput.
Trait Implementations§
source§impl Clone for AddApplicationInputInput
impl Clone for AddApplicationInputInput
source§fn clone(&self) -> AddApplicationInputInput
fn clone(&self) -> AddApplicationInputInput
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 Debug for AddApplicationInputInput
impl Debug for AddApplicationInputInput
source§impl PartialEq for AddApplicationInputInput
impl PartialEq for AddApplicationInputInput
source§fn eq(&self, other: &AddApplicationInputInput) -> bool
fn eq(&self, other: &AddApplicationInputInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AddApplicationInputInput
Auto Trait Implementations§
impl RefUnwindSafe for AddApplicationInputInput
impl Send for AddApplicationInputInput
impl Sync for AddApplicationInputInput
impl Unpin for AddApplicationInputInput
impl UnwindSafe for AddApplicationInputInput
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.