Class: Aws::DeviceFarm::Types::UpdateInstanceProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::UpdateInstanceProfileRequest
- Defined in:
- gems/aws-sdk-devicefarm/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.
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6049 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.
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6049 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
.
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6049 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.
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6049 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.
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6049 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
.
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 6049 class UpdateInstanceProfileRequest < Struct.new( :arn, :name, :description, :package_cleanup, :exclude_app_packages_from_cleanup, :reboot_after_use) SENSITIVE = [] include Aws::Structure end |