interface CfnSyncJobMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTTwinMaker.Mixins.CfnSyncJobMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiottwinmaker/mixins#CfnSyncJobMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iottwinmaker.mixins.CfnSyncJobMixinProps |
Python | aws_cdk.mixins_preview.aws_iottwinmaker.mixins.CfnSyncJobMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iottwinmaker » mixins » CfnSyncJobMixinProps |
Properties for CfnSyncJobPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iottwinmaker-syncjob.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iottwinmaker_mixins } from '@aws-cdk/mixins-preview/aws-iottwinmaker';
const cfnSyncJobMixinProps: iottwinmaker_mixins.CfnSyncJobMixinProps = {
syncRole: 'syncRole',
syncSource: 'syncSource',
tags: {
tagsKey: 'tags',
},
workspaceId: 'workspaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| sync | string | The SyncJob IAM role. |
| sync | string | The sync source. |
| tags? | { [string]: string } | Metadata you can use to manage the SyncJob. |
| workspace | string | The ID of the workspace that contains the sync job. |
syncRole?
Type:
string
(optional)
The SyncJob IAM role.
This IAM role is used by the sync job to read from the syncSource, and create, update or delete the corresponding resources.
syncSource?
Type:
string
(optional)
The sync source.
Currently the only supported syncSoucre is
SITEWISE.
tags?
Type:
{ [string]: string }
(optional)
Metadata you can use to manage the SyncJob.
workspaceId?
Type:
string
(optional)
The ID of the workspace that contains the sync job.

.NET
Go
Java
Python
TypeScript