export declare const CanaryBrowserType: { readonly Chrome: "CHROME"; readonly Firefox: "FIREFOX"; }; export type CanaryBrowserType = (typeof CanaryBrowserType)[keyof typeof CanaryBrowserType]; export declare const CanaryDependencyType: { readonly LambdaLayer: "LambdaLayer"; }; /** * Type of dependency */ export type CanaryDependencyType = (typeof CanaryDependencyType)[keyof typeof CanaryDependencyType]; export declare const CanaryProvisionedResourceCleanup: { readonly Automatic: "AUTOMATIC"; readonly Off: "OFF"; }; /** * Setting to control if provisioned resources created by Synthetics are deleted alongside the canary. Default is AUTOMATIC. */ export type CanaryProvisionedResourceCleanup = (typeof CanaryProvisionedResourceCleanup)[keyof typeof CanaryProvisionedResourceCleanup]; export declare const CanaryResourceToTag: { readonly LambdaFunction: "lambda-function"; }; /** * Specifies which resources canary tags should be replicated to. */ export type CanaryResourceToTag = (typeof CanaryResourceToTag)[keyof typeof CanaryResourceToTag];