interface SyncConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CodeStarConnections.SyncConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscodestarconnections#SyncConfigurationReference |
Java | software.amazon.awscdk.interfaces.codestarconnections.SyncConfigurationReference |
Python | aws_cdk.interfaces.aws_codestarconnections.SyncConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » aws_codestarconnections » SyncConfigurationReference |
A reference to a SyncConfiguration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codestarconnections as interfaces_aws_codestarconnections } from 'aws-cdk-lib/interfaces';
const syncConfigurationReference: interfaces_aws_codestarconnections.SyncConfigurationReference = {
resourceName: 'resourceName',
syncType: 'syncType',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ResourceName of the SyncConfiguration resource. |
| sync | string | The SyncType of the SyncConfiguration resource. |
resourceName
Type:
string
The ResourceName of the SyncConfiguration resource.
syncType
Type:
string
The SyncType of the SyncConfiguration resource.

.NET
Go
Java
Python
TypeScript