Interface CfnSyncJobProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSyncJobProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:01.010Z")
@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();
- See Also:
-
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.
- See Also:
-
getSyncSource
The sync source.Currently the only supported syncSoucre is
SITEWISE
.- See Also:
-
getWorkspaceId
The ID of the workspace that contains the sync job.- See Also:
-
getTags
Metadata you can use to manage the SyncJob.- See Also:
-
builder
- Returns:
- a
CfnSyncJobProps.Builder
ofCfnSyncJobProps
-