SyncConfigurationReference

class aws_cdk.aws_codestarconnections.SyncConfigurationReference(*, resource_name, sync_type)

Bases: object

A 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 import aws_codestarconnections as codestarconnections

sync_configuration_reference = 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.