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

Class: Aws::DeviceFarm::Types::UpdateInstanceProfileRequest

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

Overview

Note:

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the instance profile.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the instance profile.

#descriptionString

The updated description for your instance profile.

Returns:

  • (String)

    The updated description for 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 is over.

The list of packages is only considered 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 is over.

#nameString

The updated name for your instance profile.

Returns:

  • (String)

    The updated name for your instance profile.

#package_cleanupBoolean

The updated choice for whether you want to specify package cleanup. The default value is false for private devices.

Returns:

  • (Boolean)

    The updated choice for whether you want to specify package cleanup.

#reboot_after_useBoolean

The updated choice for whether you want to reboot the device after use. The default value is true.

Returns:

  • (Boolean)

    The updated choice for whether you want to reboot the device after use.