UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

24 lines (23 loc) 1.06 kB
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<GetConfigurationSetEventDestinationResult>; 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<GetConfigurationSetEventDestinationResult>; export interface GetConfigurationSetEventDestinationOutputArgs { id: pulumi.Input<string>; }