Class: Aws::DeviceFarm::Types::InstanceProfile
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::InstanceProfile
- Defined in:
- gems/aws-sdk-devicefarm/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.
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 2387 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.
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 2387 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
.
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 2387 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.
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 2387 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.
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 2387 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
.
2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 2387 class InstanceProfile < Struct.new( :arn, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use, :name, :description) SENSITIVE = [] include Aws::Structure end |