# Functions
Lookup returns information indicating if the overrider is a CDK application or YAML Patches.
ScaffoldWithCDK bootstraps a CDK application under dir/ to override the seed CloudFormation resources.
ScaffoldWithPatch sets up YAML patches in dir/ to apply to the Copilot generated CloudFormation template.
WithCDK instantiates a new CDK Overrider with root being the path to the overrides/ directory.
WithPatch instantiates a new Patch Overrider with root being the path to the overrides/ directory.
# Constants
YAMLPatchFile is the name of the YAML patch override file.
# Structs
CDK is an Overrider that can transform a CloudFormation template with the Cloud Development Kit.
CDKOpts is optional configuration for initializing a CDK Overrider.
ErrNotExist occurs when the path of the file associated with an Overrider does not exist.
Info holds metadata about an overrider.
Noop represents an Overrider that does not do any transformations.
Patch applies overrides configured as JSON Patches, as defined in https://www.rfc-editor.org/rfc/rfc6902.
PatchOpts is optional configuration for initializing a Patch Overrider.