interface CfnSuiteDefinitionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTCoreDeviceAdvisor.Mixins.CfnSuiteDefinitionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotcoredeviceadvisor/mixins#CfnSuiteDefinitionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotcoredeviceadvisor.mixins.CfnSuiteDefinitionMixinProps |
Python | aws_cdk.mixins_preview.aws_iotcoredeviceadvisor.mixins.CfnSuiteDefinitionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotcoredeviceadvisor » mixins » CfnSuiteDefinitionMixinProps |
Properties for CfnSuiteDefinitionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotcoredeviceadvisor_mixins } from '@aws-cdk/mixins-preview/aws-iotcoredeviceadvisor';
declare const suiteDefinitionConfiguration: any;
const cfnSuiteDefinitionMixinProps: iotcoredeviceadvisor_mixins.CfnSuiteDefinitionMixinProps = {
suiteDefinitionConfiguration: suiteDefinitionConfiguration,
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
(optional)
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