import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SES::ConfigurationSetEventDestination */ export declare function getConfigurationSetEventDestination(args: GetConfigurationSetEventDestinationArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConfigurationSetEventDestinationArgs { id: string; } export interface GetConfigurationSetEventDestinationResult { /** * The event destination object. */ readonly eventDestination?: outputs.ses.ConfigurationSetEventDestinationEventDestination; readonly id?: string; } /** * Resource Type definition for AWS::SES::ConfigurationSetEventDestination */ export declare function getConfigurationSetEventDestinationOutput(args: GetConfigurationSetEventDestinationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetConfigurationSetEventDestinationOutputArgs { id: pulumi.Input; }