/** *

A summary of an invalidation request.

*/ export interface _InvalidationSummary { /** *

The unique ID for an invalidation request.

*/ Id: string; /** *

The time that an invalidation request was created.

*/ CreateTime: Date | string | number; /** *

The status of an invalidation request.

*/ Status: string; } export interface _UnmarshalledInvalidationSummary extends _InvalidationSummary { /** *

The time that an invalidation request was created.

*/ CreateTime: Date; }