Struct aws_sdk_iot::operation::update_package_configuration::UpdatePackageConfigurationInput
source · #[non_exhaustive]pub struct UpdatePackageConfigurationInput {
pub version_update_by_jobs_config: Option<VersionUpdateByJobsConfig>,
pub client_token: Option<String>,
}
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.version_update_by_jobs_config: Option<VersionUpdateByJobsConfig>
Configuration to manage job's package version reporting. This updates the thing's reserved named shadow that the job targets.
client_token: Option<String>
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
Implementations§
source§impl UpdatePackageConfigurationInput
impl UpdatePackageConfigurationInput
sourcepub fn version_update_by_jobs_config(
&self
) -> Option<&VersionUpdateByJobsConfig>
pub fn version_update_by_jobs_config( &self ) -> Option<&VersionUpdateByJobsConfig>
Configuration to manage job's package version reporting. This updates the thing's reserved named shadow that the job targets.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
source§impl UpdatePackageConfigurationInput
impl UpdatePackageConfigurationInput
sourcepub fn builder() -> UpdatePackageConfigurationInputBuilder
pub fn builder() -> UpdatePackageConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdatePackageConfigurationInput
.
Trait Implementations§
source§impl Clone for UpdatePackageConfigurationInput
impl Clone for UpdatePackageConfigurationInput
source§fn clone(&self) -> UpdatePackageConfigurationInput
fn clone(&self) -> UpdatePackageConfigurationInput
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 for UpdatePackageConfigurationInput
impl PartialEq for UpdatePackageConfigurationInput
source§fn eq(&self, other: &UpdatePackageConfigurationInput) -> bool
fn eq(&self, other: &UpdatePackageConfigurationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdatePackageConfigurationInput
Auto Trait Implementations§
impl Freeze for UpdatePackageConfigurationInput
impl RefUnwindSafe for UpdatePackageConfigurationInput
impl Send for UpdatePackageConfigurationInput
impl Sync for UpdatePackageConfigurationInput
impl Unpin for UpdatePackageConfigurationInput
impl UnwindSafe for UpdatePackageConfigurationInput
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.