interface CfnSyncConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeStarConnections.Mixins.CfnSyncConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodestarconnections/mixins#CfnSyncConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.codestarconnections.mixins.CfnSyncConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_codestarconnections.mixins.CfnSyncConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_codestarconnections » mixins » CfnSyncConfigurationMixinProps |
Properties for CfnSyncConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codestarconnections_mixins } from '@aws-cdk/mixins-preview/aws-codestarconnections';
const cfnSyncConfigurationMixinProps: codestarconnections_mixins.CfnSyncConfigurationMixinProps = {
branch: 'branch',
configFile: 'configFile',
publishDeploymentStatus: 'publishDeploymentStatus',
repositoryLinkId: 'repositoryLinkId',
resourceName: 'resourceName',
roleArn: 'roleArn',
syncType: 'syncType',
triggerResourceUpdateOn: 'triggerResourceUpdateOn',
};
Properties
| Name | Type | Description |
|---|---|---|
| branch? | string | The branch associated with a specific sync configuration. |
| config | string | The file path to the configuration file associated with a specific sync configuration. |
| publish | string | Whether to enable or disable publishing of deployment status to source providers. |
| repository | string | The ID of the repository link associated with a specific sync configuration. |
| resource | string | The name of the connection resource associated with a specific sync configuration. |
| role | string | The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration. |
| sync | string | The type of sync for a specific sync configuration. |
| trigger | string | When to trigger Git sync to begin the stack update. |
branch?
Type:
string
(optional)
The branch associated with a specific sync configuration.
configFile?
Type:
string
(optional)
The 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.
publishDeploymentStatus?
Type:
string
(optional)
Whether to enable or disable publishing of deployment status to source providers.
repositoryLinkId?
Type:
string
(optional)
The ID of the repository link associated with a specific sync configuration.
resourceName?
Type:
string
(optional)
The name of the connection resource associated with a specific sync configuration.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.
syncType?
Type:
string
(optional)
The type of sync for a specific sync configuration.
triggerResourceUpdateOn?
Type:
string
(optional)
When to trigger Git sync to begin the stack update.

.NET
Go
Java
Python
TypeScript