/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.devicefarm.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Represents test settings. This data structure is passed in as the test parameter to ScheduleRun. For an example of * the JSON request syntax, see ScheduleRun. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ScheduleRunTest implements Serializable, Cloneable, StructuredPojo { /** *

* The test's type. *

*

* Must be one of the following values: *

* */ private String type; /** *

* The ARN of the uploaded test to be run. *

*/ private String testPackageArn; /** *

* The ARN of the YAML-formatted test specification. *

*/ private String testSpecArn; /** *

* The test's filter. *

*/ private String filter; /** *

* The test's parameters, such as test framework parameters and fixture settings. Parameters are represented by * name-value pairs of strings. *

*

* For all tests: *

* *

* For Calabash tests: *

* *

* For Appium tests (all types): *

* *

* For fuzz tests (Android only): *

* *

* For Explorer tests: *

* *

* For Instrumentation: *

* *

* For XCTest and XCTestUI: *

* *

* For UIAutomator: *

* */ private java.util.Map parameters; /** *

* The test's type. *

*

* Must be one of the following values: *

* * * @param type * The test's type.

*

* Must be one of the following values: *

*