UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

12 lines (11 loc) 624 B
import type { IDeploymentStrategyRef, IEnvironmentRef } from '../../../interfaces/generated/aws-appconfig-interfaces.generated'; import type { IDeploymentStrategy } from '../deployment-strategy'; import type { IEnvironment } from '../environment'; /** * Converts an IEnvironmentRef to IEnvironment, with runtime type checking */ export declare function toIEnvironment(environment: IEnvironmentRef): IEnvironment; /** * Converts an IDeploymentStrategyRef to IDeploymentStrategy, with runtime type checking */ export declare function toIDeploymentStrategy(deploymentStrategy: IDeploymentStrategyRef): IDeploymentStrategy;