Class: Aws::DeviceFarm::Types::CustomerArtifactPaths
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::CustomerArtifactPaths
- Defined in:
- gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb
Overview
A JSON object that specifies the paths where the artifacts generated by the customer's tests, on the device or in the test environment, are pulled from.
Specify deviceHostPaths
and optionally specify either iosPaths
or
androidPaths
.
For web app tests, you can specify both iosPaths
and androidPaths
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#android_paths ⇒ Array<String>
Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests are pulled from.
-
#device_host_paths ⇒ Array<String>
Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests are pulled from.
-
#ios_paths ⇒ Array<String>
Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests are pulled from.
Instance Attribute Details
#android_paths ⇒ Array<String>
Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests are pulled from.
900 901 902 903 904 905 906 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 900 class CustomerArtifactPaths < Struct.new( :ios_paths, :android_paths, :device_host_paths) SENSITIVE = [] include Aws::Structure end |
#device_host_paths ⇒ Array<String>
Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests are pulled from.
900 901 902 903 904 905 906 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 900 class CustomerArtifactPaths < Struct.new( :ios_paths, :android_paths, :device_host_paths) SENSITIVE = [] include Aws::Structure end |
#ios_paths ⇒ Array<String>
Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests are pulled from.
900 901 902 903 904 905 906 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 900 class CustomerArtifactPaths < Struct.new( :ios_paths, :android_paths, :device_host_paths) SENSITIVE = [] include Aws::Structure end |