Interface CfnSyncConfigurationProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnSyncConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:35.226Z")
@Stability(Stable)
public interface CfnSyncConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a 
CfnSyncConfiguration.
 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.codestarconnections.*;
 CfnSyncConfigurationProps cfnSyncConfigurationProps = CfnSyncConfigurationProps.builder()
         .branch("branch")
         .configFile("configFile")
         .repositoryLinkId("repositoryLinkId")
         .resourceName("resourceName")
         .roleArn("roleArn")
         .syncType("syncType")
         // the properties below are optional
         .publishDeploymentStatus("publishDeploymentStatus")
         .triggerResourceUpdateOn("triggerResourceUpdateOn")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSyncConfigurationPropsstatic final classAn implementation forCfnSyncConfigurationProps
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The branch associated with a specific sync configuration.The file path to the configuration file associated with a specific sync configuration.default StringWhether to enable or disable publishing of deployment status to source providers.The ID of the repository link associated with a specific sync configuration.The name of the connection resource associated with a specific sync configuration.The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.The type of sync for a specific sync configuration.default StringWhen to trigger Git sync to begin the stack update.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getBranchThe branch associated with a specific sync configuration.- See Also:
 
- 
getConfigFileThe file path to the configuration file associated with a specific sync configuration.The path should point to an actual file in the sync configurations linked repository. - See Also:
 
- 
getRepositoryLinkIdThe ID of the repository link associated with a specific sync configuration.- See Also:
 
- 
getResourceNameThe name of the connection resource associated with a specific sync configuration.- See Also:
 
- 
getRoleArnThe Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.- See Also:
 
- 
getSyncTypeThe type of sync for a specific sync configuration.- See Also:
 
- 
getPublishDeploymentStatusWhether to enable or disable publishing of deployment status to source providers.- See Also:
 
- 
getTriggerResourceUpdateOnWhen to trigger Git sync to begin the stack update.- See Also:
 
- 
builder- Returns:
- a CfnSyncConfigurationProps.BuilderofCfnSyncConfigurationProps
 
 
-