UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

12 lines (11 loc) 609 B
import { IDeploymentStrategyRef, IEnvironmentRef } from '../../../interfaces/generated/aws-appconfig-interfaces.generated'; import { IDeploymentStrategy } from '../deployment-strategy'; import { 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;