#[non_exhaustive]pub struct UpdateInstanceProfileInput {
pub arn: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub package_cleanup: Option<bool>,
pub exclude_app_packages_from_cleanup: Option<Vec<String>>,
pub reboot_after_use: Option<bool>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.arn: Option<String>The Amazon Resource Name (ARN) of the instance profile.
name: Option<String>The updated name for your instance profile.
description: Option<String>The updated description for your instance profile.
package_cleanup: Option<bool>The updated choice for whether you want to specify package cleanup. The default value is false for private devices.
exclude_app_packages_from_cleanup: Option<Vec<String>>An array of strings that specifies the list of app packages that should not be cleaned up from the device after a test run is over.
The list of packages is only considered if you set packageCleanup to true.
reboot_after_use: Option<bool>The updated choice for whether you want to reboot the device after use. The default value is true.
Implementations
sourceimpl UpdateInstanceProfileInput
impl UpdateInstanceProfileInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateInstanceProfile, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateInstanceProfile, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateInstanceProfile>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateInstanceProfileInput
sourceimpl UpdateInstanceProfileInput
impl UpdateInstanceProfileInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The updated description for your instance profile.
sourcepub fn package_cleanup(&self) -> Option<bool>
pub fn package_cleanup(&self) -> Option<bool>
The updated choice for whether you want to specify package cleanup. The default value is false for private devices.
sourcepub fn exclude_app_packages_from_cleanup(&self) -> Option<&[String]>
pub fn exclude_app_packages_from_cleanup(&self) -> Option<&[String]>
An array of strings that specifies the list of app packages that should not be cleaned up from the device after a test run is over.
The list of packages is only considered if you set packageCleanup to true.
sourcepub fn reboot_after_use(&self) -> Option<bool>
pub fn reboot_after_use(&self) -> Option<bool>
The updated choice for whether you want to reboot the device after use. The default value is true.
Trait Implementations
sourceimpl Clone for UpdateInstanceProfileInput
impl Clone for UpdateInstanceProfileInput
sourcefn clone(&self) -> UpdateInstanceProfileInput
fn clone(&self) -> UpdateInstanceProfileInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for UpdateInstanceProfileInput
impl Debug for UpdateInstanceProfileInput
sourceimpl PartialEq<UpdateInstanceProfileInput> for UpdateInstanceProfileInput
impl PartialEq<UpdateInstanceProfileInput> for UpdateInstanceProfileInput
sourcefn eq(&self, other: &UpdateInstanceProfileInput) -> bool
fn eq(&self, other: &UpdateInstanceProfileInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UpdateInstanceProfileInput) -> bool
fn ne(&self, other: &UpdateInstanceProfileInput) -> bool
This method tests for !=.
impl StructuralPartialEq for UpdateInstanceProfileInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateInstanceProfileInput
impl Send for UpdateInstanceProfileInput
impl Sync for UpdateInstanceProfileInput
impl Unpin for UpdateInstanceProfileInput
impl UnwindSafe for UpdateInstanceProfileInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more