listArtifacts
Gets information about artifacts.
Samples
fun main() {
//sampleStart
// The following example lists screenshot artifacts for a specific run.
deviceFarmClient.listArtifacts {
arn = "arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456"
type = ArtifactCategory.fromValue("SCREENSHOT")
}
//sampleEnd
}