import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as ecs from 'aws-cdk-lib/aws-ecs';

export interface DatadogAgentServiceProps {
    accountStage: string;
    cluster: ecs.Cluster;
    vpc: ec2.IVpc;
    subnets: ec2.ISubnet[];
  }
  