interface SyncJobReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTTwinMaker.SyncJobReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiottwinmaker#SyncJobReference |
Java | software.amazon.awscdk.services.iottwinmaker.SyncJobReference |
Python | aws_cdk.aws_iottwinmaker.SyncJobReference |
TypeScript | aws-cdk-lib » aws_iottwinmaker » SyncJobReference |
A reference to a SyncJob resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iottwinmaker as iottwinmaker } from 'aws-cdk-lib';
const syncJobReference: iottwinmaker.SyncJobReference = {
syncJobArn: 'syncJobArn',
syncSource: 'syncSource',
workspaceId: 'workspaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| sync | string | The ARN of the SyncJob resource. |
| sync | string | The SyncSource of the SyncJob resource. |
| workspace | string | The WorkspaceId of the SyncJob resource. |
syncJobArn
Type:
string
The ARN of the SyncJob resource.
syncSource
Type:
string
The SyncSource of the SyncJob resource.
workspaceId
Type:
string
The WorkspaceId of the SyncJob resource.

.NET
Go
Java
Python
TypeScript