Struct aws_sdk_kinesisanalyticsv2::operation::delete_application_input_processing_configuration::DeleteApplicationInputProcessingConfigurationOutput
source · #[non_exhaustive]pub struct DeleteApplicationInputProcessingConfigurationOutput {
pub application_arn: Option<String>,
pub application_version_id: Option<i64>,
/* private fields */
}
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_arn: Option<String>
The Amazon Resource Name (ARN) of the application.
application_version_id: Option<i64>
The current application version ID.
Implementations§
source§impl DeleteApplicationInputProcessingConfigurationOutput
impl DeleteApplicationInputProcessingConfigurationOutput
sourcepub fn application_arn(&self) -> Option<&str>
pub fn application_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the application.
sourcepub fn application_version_id(&self) -> Option<i64>
pub fn application_version_id(&self) -> Option<i64>
The current application version ID.
source§impl DeleteApplicationInputProcessingConfigurationOutput
impl DeleteApplicationInputProcessingConfigurationOutput
sourcepub fn builder() -> DeleteApplicationInputProcessingConfigurationOutputBuilder
pub fn builder() -> DeleteApplicationInputProcessingConfigurationOutputBuilder
Creates a new builder-style object to manufacture DeleteApplicationInputProcessingConfigurationOutput
.
Trait Implementations§
source§impl Clone for DeleteApplicationInputProcessingConfigurationOutput
impl Clone for DeleteApplicationInputProcessingConfigurationOutput
source§fn clone(&self) -> DeleteApplicationInputProcessingConfigurationOutput
fn clone(&self) -> DeleteApplicationInputProcessingConfigurationOutput
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<DeleteApplicationInputProcessingConfigurationOutput> for DeleteApplicationInputProcessingConfigurationOutput
impl PartialEq<DeleteApplicationInputProcessingConfigurationOutput> for DeleteApplicationInputProcessingConfigurationOutput
source§fn eq(
&self,
other: &DeleteApplicationInputProcessingConfigurationOutput
) -> bool
fn eq( &self, other: &DeleteApplicationInputProcessingConfigurationOutput ) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteApplicationInputProcessingConfigurationOutput
impl RequestId for DeleteApplicationInputProcessingConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DeleteApplicationInputProcessingConfigurationOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteApplicationInputProcessingConfigurationOutput
impl Send for DeleteApplicationInputProcessingConfigurationOutput
impl Sync for DeleteApplicationInputProcessingConfigurationOutput
impl Unpin for DeleteApplicationInputProcessingConfigurationOutput
impl UnwindSafe for DeleteApplicationInputProcessingConfigurationOutput
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