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)

37 lines (36 loc) 1.32 kB
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<GetMailManagerAddressListResult>; 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<GetMailManagerAddressListResult>; export interface GetMailManagerAddressListOutputArgs { /** * The identifier of the address list. */ addressListId: pulumi.Input<string>; }