Class: Aws::DeviceFarm::Types::CustomerArtifactPaths

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#android_pathsArray<String>

Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests are pulled from.

Returns:

  • (Array<String>)


920
921
922
923
924
925
926
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 920

class CustomerArtifactPaths < Struct.new(
  :ios_paths,
  :android_paths,
  :device_host_paths)
  SENSITIVE = []
  include Aws::Structure
end

#device_host_pathsArray<String>

Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests are pulled from.

Returns:

  • (Array<String>)


920
921
922
923
924
925
926
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 920

class CustomerArtifactPaths < Struct.new(
  :ios_paths,
  :android_paths,
  :device_host_paths)
  SENSITIVE = []
  include Aws::Structure
end

#ios_pathsArray<String>

Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests are pulled from.

Returns:

  • (Array<String>)


920
921
922
923
924
925
926
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 920

class CustomerArtifactPaths < Struct.new(
  :ios_paths,
  :android_paths,
  :device_host_paths)
  SENSITIVE = []
  include Aws::Structure
end