/** *
Specifies an attribute and value that filter the events returned.
*/ export interface _LookupAttribute { /** *Specifies an attribute on which to filter the events returned.
*/ AttributeKey: "EventId" | "EventName" | "ReadOnly" | "Username" | "ResourceType" | "ResourceName" | "EventSource" | "AccessKeyId" | string; /** *Specifies a value for the specified AttributeKey.
*/ AttributeValue: string; } export declare type _UnmarshalledLookupAttribute = _LookupAttribute;