SyncJobReference

class aws_cdk.aws_iottwinmaker.SyncJobReference(*, sync_job_arn, sync_source, workspace_id)

Bases: object

A reference to a SyncJob resource.

Parameters:
  • sync_job_arn (str) – The ARN of the SyncJob resource.

  • sync_source (str) – The SyncSource of the SyncJob resource.

  • workspace_id (str) – The WorkspaceId of the SyncJob 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_iottwinmaker as iottwinmaker

sync_job_reference = iottwinmaker.SyncJobReference(
    sync_job_arn="syncJobArn",
    sync_source="syncSource",
    workspace_id="workspaceId"
)

Attributes

sync_job_arn

The ARN of the SyncJob resource.

sync_source

The SyncSource of the SyncJob resource.

workspace_id

The WorkspaceId of the SyncJob resource.