Interface CfnSuiteDefinitionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSuiteDefinitionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.827Z")
@Stability(Stable)
public interface CfnSuiteDefinitionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSuiteDefinition
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iotcoredeviceadvisor.*; Object suiteDefinitionConfiguration; CfnSuiteDefinitionProps cfnSuiteDefinitionProps = CfnSuiteDefinitionProps.builder() .suiteDefinitionConfiguration(suiteDefinitionConfiguration) // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSuiteDefinitionProps
static final class
An implementation forCfnSuiteDefinitionProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSuiteDefinitionConfiguration
The configuration of the Suite Definition. Listed below are the required elements of theSuiteDefinitionConfiguration
.- devicePermissionRoleArn - The device permission arn.
This is a required element.
Type: String
- devices - The list of configured devices under test. For more information on devices under test, see DeviceUnderTest
Not a required element.
Type: List of devices under test
- intendedForQualification - The tests intended for qualification in a suite.
Not a required element.
Type: Boolean
- rootGroup - The test suite root group. For more information on creating and using root groups see the Device Advisor workflow .
This is a required element.
Type: String
- suiteDefinitionName - The Suite Definition Configuration name.
This is a required element.
Type: String
-
getTags
Metadata that can be used to manage the the Suite Definition. -
builder
- Returns:
- a
CfnSuiteDefinitionProps.Builder
ofCfnSuiteDefinitionProps
-