pub struct DeleteApplicationInputProcessingConfigurationRequest {
pub application_name: String,
pub current_application_version_id: i64,
pub input_id: String,
}Fields§
§application_name: StringThe name of the application.
current_application_version_id: i64The application version. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned.
input_id: StringThe ID of the input configuration from which to delete the input processing configuration. You can get a list of the input IDs for an application by using the DescribeApplication operation.
Trait Implementations§
Source§impl Clone for DeleteApplicationInputProcessingConfigurationRequest
impl Clone for DeleteApplicationInputProcessingConfigurationRequest
Source§fn clone(&self) -> DeleteApplicationInputProcessingConfigurationRequest
fn clone(&self) -> DeleteApplicationInputProcessingConfigurationRequest
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 Default for DeleteApplicationInputProcessingConfigurationRequest
impl Default for DeleteApplicationInputProcessingConfigurationRequest
Source§fn default() -> DeleteApplicationInputProcessingConfigurationRequest
fn default() -> DeleteApplicationInputProcessingConfigurationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteApplicationInputProcessingConfigurationRequest
impl PartialEq for DeleteApplicationInputProcessingConfigurationRequest
Source§fn eq(
&self,
other: &DeleteApplicationInputProcessingConfigurationRequest,
) -> bool
fn eq( &self, other: &DeleteApplicationInputProcessingConfigurationRequest, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteApplicationInputProcessingConfigurationRequest
Auto Trait Implementations§
impl Freeze for DeleteApplicationInputProcessingConfigurationRequest
impl RefUnwindSafe for DeleteApplicationInputProcessingConfigurationRequest
impl Send for DeleteApplicationInputProcessingConfigurationRequest
impl Sync for DeleteApplicationInputProcessingConfigurationRequest
impl Unpin for DeleteApplicationInputProcessingConfigurationRequest
impl UnwindSafe for DeleteApplicationInputProcessingConfigurationRequest
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