#[non_exhaustive]pub struct UpdateInstanceProfileInput { /* private fields */ }Implementations
sourceimpl UpdateInstanceProfileInput
impl UpdateInstanceProfileInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateInstanceProfile, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateInstanceProfile, AwsResponseRetryClassifier>, 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 moresourceimpl 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
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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