import { ModelData, Model } from "@kubernetes-models/base"; /** * AWSGroup is an structure that can be used to whitelisting information from AWS integration */ export interface IAWSGroup { "labels"?: { [key: string]: string; }; "region"?: string; "securityGroupsIds"?: Array; "securityGroupsNames"?: Array; } /** * AWSGroup is an structure that can be used to whitelisting information from AWS integration */ export declare class AWSGroup extends Model implements IAWSGroup { "labels"?: { [key: string]: string; }; "region"?: string; "securityGroupsIds"?: Array; "securityGroupsNames"?: Array; constructor(data?: ModelData); } export type { IAWSGroup as IComGithubCiliumCiliumPkgPolicyApiAWSGroup, AWSGroup as ComGithubCiliumCiliumPkgPolicyApiAWSGroup };