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();
 
  • Method Details

    • getSyncRole

      @Stability(Stable) @NotNull String 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

      @Stability(Stable) @NotNull String getSyncSource()
      The sync source.

      Currently the only supported syncSoucre is SITEWISE .

    • getWorkspaceId

      @Stability(Stable) @NotNull String getWorkspaceId()
      The ID of the workspace that contains the sync job.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      Metadata you can use to manage the SyncJob.
    • builder

      @Stability(Stable) static CfnSyncJobProps.Builder builder()
      Returns:
      a CfnSyncJobProps.Builder of CfnSyncJobProps