Class: Aws::DeviceFarm::Types::InstanceProfile
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::InstanceProfile
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the instance profile.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the instance profile.
-
#description ⇒ String
The description of the instance profile.
-
#exclude_app_packages_from_cleanup ⇒ Array<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.
-
#name ⇒ String
The name of the instance profile.
-
#package_cleanup ⇒ Boolean
When set to ‘true`, Device Farm removes app packages after a test run.
-
#reboot_after_use ⇒ Boolean
When set to ‘true`, Device Farm reboots the instance after a test run.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the instance profile.
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2361 class InstanceProfile < Struct.new( :arn, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use, :name, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the instance profile.
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2361 class InstanceProfile < Struct.new( :arn, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use, :name, :description) SENSITIVE = [] include Aws::Structure end |
#exclude_app_packages_from_cleanup ⇒ Array<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`.
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2361 class InstanceProfile < Struct.new( :arn, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use, :name, :description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the instance profile.
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2361 class InstanceProfile < Struct.new( :arn, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use, :name, :description) SENSITIVE = [] include Aws::Structure end |
#package_cleanup ⇒ Boolean
When set to ‘true`, Device Farm removes app packages after a test run. The default value is `false` for private devices.
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2361 class InstanceProfile < Struct.new( :arn, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use, :name, :description) SENSITIVE = [] include Aws::Structure end |
#reboot_after_use ⇒ Boolean
When set to ‘true`, Device Farm reboots the instance after a test run. The default value is `true`.
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 2361 class InstanceProfile < Struct.new( :arn, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use, :name, :description) SENSITIVE = [] include Aws::Structure end |