import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::SES::MailManagerAddressList Resource Type */ export declare function getMailManagerAddressList(args: GetMailManagerAddressListArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetMailManagerAddressListArgs { /** * The identifier of the address list. */ addressListId: string; } export interface GetMailManagerAddressListResult { /** * The Amazon Resource Name (ARN) of the address list. */ readonly addressListArn?: string; /** * The identifier of the address list. */ readonly addressListId?: string; /** * The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }. */ readonly tags?: outputs.Tag[]; } /** * Definition of AWS::SES::MailManagerAddressList Resource Type */ export declare function getMailManagerAddressListOutput(args: GetMailManagerAddressListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetMailManagerAddressListOutputArgs { /** * The identifier of the address list. */ addressListId: pulumi.Input; }