UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

28 lines (27 loc) 1.08 kB
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];