import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class Tags { Value?: Value; Key?: Value; constructor(properties: Tags); } export declare class Validators { Type?: Value; Content?: Value; constructor(properties: Validators); } export interface ConfigurationProfileProperties { LocationUri: Value; Type?: Value; KmsKeyIdentifier?: Value; Description?: Value; Validators?: List; RetrievalRoleArn?: Value; ApplicationId: Value; Tags?: List; Name: Value; } export default class ConfigurationProfile extends ResourceBase { static Tags: typeof Tags; static Validators: typeof Validators; constructor(properties: ConfigurationProfileProperties); }