import * as $dara from '@darabonba/typescript'; export declare class CreateOrUpdateEventBridgeIntegrationResponseBodyEventBridgeIntegration extends $dara.Model { /** * @remarks * The AccessKey ID that is used to connect to EventBridge. * * @example * abc****************** */ accessKey?: string; /** * @remarks * The AccessKey secret that is used to connect to EventBridge. * * @example * abc****************** */ accessSecret?: string; /** * @remarks * The description of the EventBridge integration. * * @example * test */ description?: string; /** * @remarks * The public endpoint of EventBridge. * * @example * http://xxxxx */ endpoint?: string; /** * @remarks * The name of the event bus. * * @example * EventBus_Test */ eventBusName?: string; /** * @remarks * The region ID of the event bus. * * @example * cn-hangzhou */ eventBusRegionId?: string; /** * @remarks * The ID of the EventBridge integration. * * @example * 123 */ id?: number; /** * @remarks * The name of the EventBridge integration. * * @example * EventBridge_Test */ name?: string; /** * @remarks * The event source. * * @example * arms */ source?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateOrUpdateEventBridgeIntegrationResponseBody extends $dara.Model { /** * @remarks * The information about the EventBridge integration. */ eventBridgeIntegration?: CreateOrUpdateEventBridgeIntegrationResponseBodyEventBridgeIntegration; /** * @remarks * The request ID. * * @example * 2B289756-E791-5842-BCBD-AD414C****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }