Struct aws_sdk_devicefarm::model::InstanceProfile [−][src]
#[non_exhaustive]pub struct InstanceProfile {
pub arn: Option<String>,
pub package_cleanup: Option<bool>,
pub exclude_app_packages_from_cleanup: Option<Vec<String>>,
pub reboot_after_use: Option<bool>,
pub name: Option<String>,
pub description: Option<String>,
}Expand description
Represents the instance profile.
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.
package_cleanup: Option<bool>When set to true, Device Farm removes app packages after a test run. The default value is
false for private devices.
exclude_app_packages_from_cleanup: Option<Vec<String>>An array of strings containing the list of app packages that should not be cleaned up from the device after a test run completes.
The list of packages is considered only if you set packageCleanup to
true.
reboot_after_use: Option<bool>When set to true, Device Farm reboots the instance after a test run. The default value is
true.
name: Option<String>The name of the instance profile.
description: Option<String>The description of the instance profile.
Implementations
When set to true, Device Farm removes app packages after a test run. The default value is
false for private devices.
An array of strings containing the list of app packages that should not be cleaned up from the device after a test run completes.
The list of packages is considered only if you set packageCleanup to
true.
When set to true, Device Farm reboots the instance after a test run. The default value is
true.
The description of the instance profile.
Creates a new builder-style object to manufacture InstanceProfile
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for InstanceProfile
impl Send for InstanceProfile
impl Sync for InstanceProfile
impl Unpin for InstanceProfile
impl UnwindSafe for InstanceProfile
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more