aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
15 lines (14 loc) • 416 B
TypeScript
import { CfnListener, CfnListenerRule } from '../elasticloadbalancingv2.generated';
/**
* Interface for listener actions
*/
export interface IListenerAction {
/**
* Render the listener default actions in this chain
*/
renderActions(): CfnListener.ActionProperty[];
/**
* Render the listener rule actions in this chain
*/
renderRuleActions(): CfnListenerRule.ActionProperty[];
}