Class: Aws::DeviceFarm::Types::UpdateInstanceProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::UpdateInstanceProfileRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the instance profile.
-
#description ⇒ String
The updated description for your instance profile.
-
#exclude_app_packages_from_cleanup ⇒ 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.
-
#name ⇒ String
The updated name for your instance profile.
-
#package_cleanup ⇒ Boolean
The updated choice for whether you want to specify package cleanup.
-
#reboot_after_use ⇒ Boolean
The updated choice for whether you want to reboot the device after use.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the instance profile.
6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6044 class UpdateInstanceProfileRequest < Struct.new( :arn, :name, :description, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The updated description for your instance profile.
6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6044 class UpdateInstanceProfileRequest < Struct.new( :arn, :name, :description, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use) SENSITIVE = [] include Aws::Structure end |
#exclude_app_packages_from_cleanup ⇒ 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.
The list of packages is only considered if you set ‘packageCleanup` to `true`.
6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6044 class UpdateInstanceProfileRequest < Struct.new( :arn, :name, :description, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The updated name for your instance profile.
6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6044 class UpdateInstanceProfileRequest < Struct.new( :arn, :name, :description, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use) SENSITIVE = [] include Aws::Structure end |
#package_cleanup ⇒ Boolean
The updated choice for whether you want to specify package cleanup. The default value is ‘false` for private devices.
6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6044 class UpdateInstanceProfileRequest < Struct.new( :arn, :name, :description, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use) SENSITIVE = [] include Aws::Structure end |
#reboot_after_use ⇒ Boolean
The updated choice for whether you want to reboot the device after use. The default value is ‘true`.
6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 6044 class UpdateInstanceProfileRequest < Struct.new( :arn, :name, :description, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use) SENSITIVE = [] include Aws::Structure end |