Class: Aws::DeviceFarm::Types::TestGridSessionArtifact

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-devicefarm/types.rb

Overview

Artifacts are video and other files that are produced in the process of running a browser in an automated context.

<note markdown=“1”> Video elements might be broken up into multiple artifacts as they grow in size during creation.

</note>

Constant Summary collapse

SENSITIVE =
[:url]

Instance Attribute Summary collapse

Instance Attribute Details

#filenameString

The file name of the artifact.

Returns:

  • (String)


5915
5916
5917
5918
5919
5920
5921
# File 'lib/aws-sdk-devicefarm/types.rb', line 5915

class TestGridSessionArtifact < Struct.new(
  :filename,
  :type,
  :url)
  SENSITIVE = [:url]
  include Aws::Structure
end

#typeString

The kind of artifact.

Returns:

  • (String)


5915
5916
5917
5918
5919
5920
5921
# File 'lib/aws-sdk-devicefarm/types.rb', line 5915

class TestGridSessionArtifact < Struct.new(
  :filename,
  :type,
  :url)
  SENSITIVE = [:url]
  include Aws::Structure
end

#urlString

A semi-stable URL to the content of the object.

Returns:

  • (String)


5915
5916
5917
5918
5919
5920
5921
# File 'lib/aws-sdk-devicefarm/types.rb', line 5915

class TestGridSessionArtifact < Struct.new(
  :filename,
  :type,
  :url)
  SENSITIVE = [:url]
  include Aws::Structure
end