Interface CfnSuiteDefinition.SuiteDefinitionConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSuiteDefinition.SuiteDefinitionConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnSuiteDefinition

@Stability(Stable) public static interface CfnSuiteDefinition.SuiteDefinitionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Gets the suite definition configuration.

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.*;
 SuiteDefinitionConfigurationProperty suiteDefinitionConfigurationProperty = SuiteDefinitionConfigurationProperty.builder()
         .devicePermissionRoleArn("devicePermissionRoleArn")
         .rootGroup("rootGroup")
         // the properties below are optional
         .devices(List.of(DeviceUnderTestProperty.builder()
                 .certificateArn("certificateArn")
                 .thingArn("thingArn")
                 .build()))
         .intendedForQualification(false)
         .suiteDefinitionName("suiteDefinitionName")
         .build();
 

See Also: