SuiteDefinitionReference

class aws_cdk.aws_iotcoredeviceadvisor.SuiteDefinitionReference(*, suite_definition_arn, suite_definition_id)

Bases: object

A reference to a SuiteDefinition resource.

Parameters:
  • suite_definition_arn (str) – The ARN of the SuiteDefinition resource.

  • suite_definition_id (str) – The SuiteDefinitionId of the SuiteDefinition resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_iotcoredeviceadvisor as iotcoredeviceadvisor

suite_definition_reference = iotcoredeviceadvisor.SuiteDefinitionReference(
    suite_definition_arn="suiteDefinitionArn",
    suite_definition_id="suiteDefinitionId"
)

Attributes

suite_definition_arn

The ARN of the SuiteDefinition resource.

suite_definition_id

The SuiteDefinitionId of the SuiteDefinition resource.