interface CfnSyncJobMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTTwinMaker.CfnSyncJobMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiottwinmaker#CfnSyncJobMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iottwinmaker.CfnSyncJobMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iottwinmaker.CfnSyncJobMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iottwinmaker » 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 { aws_iottwinmaker as iottwinmaker } from '@aws-cdk/cfn-property-mixins';
const cfnSyncJobMixinProps: iottwinmaker.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