Interface CfnSyncJobProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSyncJobProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.971Z")
@Stability(Stable)
public interface CfnSyncJobProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSyncJob
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iottwinmaker.*; CfnSyncJobProps cfnSyncJobProps = CfnSyncJobProps.builder() .syncRole("syncRole") .syncSource("syncSource") .workspaceId("workspaceId") // the properties below are optional .tags(Map.of( "tagsKey", "tags")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSyncJobProps
static final class
An implementation forCfnSyncJobProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSyncJobProps.Builder
builder()
The SyncJob IAM role.The sync source.getTags()
Metadata you can use to manage the SyncJob.The ID of the workspace that contains the sync job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSyncRole
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.
-
getSyncSource
The sync source.Currently the only supported syncSoucre is
SITEWISE
. -
getWorkspaceId
The ID of the workspace that contains the sync job. -
getTags
Metadata you can use to manage the SyncJob. -
builder
- Returns:
- a
CfnSyncJobProps.Builder
ofCfnSyncJobProps
-