/** * @type LogpushOwnershipPostResponseData: The customer\'s new Logpush Ownership. * * @property destinationPath: Destination where logs will be sent (S3 bucket only). * - **Pattern:** /^.*$/ * * @property fileName: File path where the ownership challenge file is written. * - **Pattern:** /^.*$/ * */ export type LogpushOwnershipPostResponseData = { destinationPath: string; fileName: string; } & { [key: string]: any; };