interface CfnSuiteDefinitionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTCoreDeviceAdvisor.CfnSuiteDefinitionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotcoredeviceadvisor#CfnSuiteDefinitionProps |
Java | software.amazon.awscdk.services.iotcoredeviceadvisor.CfnSuiteDefinitionProps |
Python | aws_cdk.aws_iotcoredeviceadvisor.CfnSuiteDefinitionProps |
TypeScript | aws-cdk-lib » aws_iotcoredeviceadvisor » CfnSuiteDefinitionProps |
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 { aws_iotcoredeviceadvisor as iotcoredeviceadvisor } from 'aws-cdk-lib';
declare const suiteDefinitionConfiguration: any;
const cfnSuiteDefinitionProps: iotcoredeviceadvisor.CfnSuiteDefinitionProps = {
suiteDefinitionConfiguration: suiteDefinitionConfiguration,
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| suite | any | Gets the suite definition configuration. |
| tags? | Cfn[] | Metadata that can be used to manage the the Suite Definition. |
suiteDefinitionConfiguration
Type:
any
Gets the suite definition configuration.
tags?
Type:
Cfn[]
(optional)
Metadata that can be used to manage the the Suite Definition.

.NET
Go
Java
Python
TypeScript