SyncConfigurationReference
- class aws_cdk.interfaces.aws_codestarconnections.SyncConfigurationReference(*, resource_name, sync_type)
Bases:
objectA reference to a SyncConfiguration resource.
- Parameters:
resource_name (
str) – The ResourceName of the SyncConfiguration resource.sync_type (
str) – The SyncType of the SyncConfiguration resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_codestarconnections as interfaces_codestarconnections sync_configuration_reference = interfaces_codestarconnections.SyncConfigurationReference( resource_name="resourceName", sync_type="syncType" )
Attributes
- resource_name
The ResourceName of the SyncConfiguration resource.
- sync_type
The SyncType of the SyncConfiguration resource.