Files
agent-claw/cdk/node_modules/aws-cdk-lib/aws-appconfig/lib/private/ref-utils.d.ts
2026-05-06 18:55:16 -05:00

12 lines
624 B
TypeScript

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;