You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DeviceFarm::Types::CreateInstanceProfileRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateInstanceProfileRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "Name", # required
  description: "Message",
  package_cleanup: false,
  exclude_app_packages_from_cleanup: ["String"],
  reboot_after_use: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of your instance profile.

Returns:

  • (String)

    The description of your instance profile.

#exclude_app_packages_from_cleanupArray<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.

Returns:

  • (Array<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.

#nameString

The name of your instance profile.

Returns:

  • (String)

    The name of your instance profile.

#package_cleanupBoolean

When set to true, Device Farm removes app packages after a test run. The default value is false for private devices.

Returns:

  • (Boolean)

    When set to true, Device Farm removes app packages after a test run.

#reboot_after_useBoolean

When set to true, Device Farm reboots the instance after a test run. The default value is true.

Returns:

  • (Boolean)

    When set to true, Device Farm reboots the instance after a test run.