#[non_exhaustive]pub struct CreateInstanceProfileInput { /* private fields */ }Implementations
sourceimpl CreateInstanceProfileInput
impl CreateInstanceProfileInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateInstanceProfile, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateInstanceProfile, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateInstanceProfile>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateInstanceProfileInput.
sourceimpl CreateInstanceProfileInput
impl CreateInstanceProfileInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of your instance profile.
sourcepub fn package_cleanup(&self) -> Option<bool>
pub fn package_cleanup(&self) -> Option<bool>
When set to true, Device Farm removes app packages after a test run. 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.
The list of packages is considered only if you set packageCleanup to true.
sourcepub fn reboot_after_use(&self) -> Option<bool>
pub fn reboot_after_use(&self) -> Option<bool>
When set to true, Device Farm reboots the instance after a test run. The default value is true.
Trait Implementations
sourceimpl Clone for CreateInstanceProfileInput
impl Clone for CreateInstanceProfileInput
sourcefn clone(&self) -> CreateInstanceProfileInput
fn clone(&self) -> CreateInstanceProfileInput
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 CreateInstanceProfileInput
impl Debug for CreateInstanceProfileInput
sourceimpl PartialEq<CreateInstanceProfileInput> for CreateInstanceProfileInput
impl PartialEq<CreateInstanceProfileInput> for CreateInstanceProfileInput
sourcefn eq(&self, other: &CreateInstanceProfileInput) -> bool
fn eq(&self, other: &CreateInstanceProfileInput) -> bool
impl StructuralPartialEq for CreateInstanceProfileInput
Auto Trait Implementations
impl RefUnwindSafe for CreateInstanceProfileInput
impl Send for CreateInstanceProfileInput
impl Sync for CreateInstanceProfileInput
impl Unpin for CreateInstanceProfileInput
impl UnwindSafe for CreateInstanceProfileInput
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