@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)
49 lines (48 loc) • 1.46 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::Connect::EmailAddress
*/
export declare function getEmailAddress(args: GetEmailAddressArgs, opts?: pulumi.InvokeOptions): Promise<GetEmailAddressResult>;
export interface GetEmailAddressArgs {
/**
* The identifier of the email address.
*/
emailAddressArn: string;
}
export interface GetEmailAddressResult {
/**
* List of alias configurations for the email address
*/
readonly aliasConfigurations?: outputs.connect.EmailAddressAliasConfiguration[];
/**
* A description for the email address.
*/
readonly description?: string;
/**
* The display name for the email address.
*/
readonly displayName?: string;
/**
* The identifier of the email address.
*/
readonly emailAddressArn?: string;
/**
* The identifier of the Amazon Connect instance.
*/
readonly instanceArn?: string;
/**
* One or more tags.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::Connect::EmailAddress
*/
export declare function getEmailAddressOutput(args: GetEmailAddressOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEmailAddressResult>;
export interface GetEmailAddressOutputArgs {
/**
* The identifier of the email address.
*/
emailAddressArn: pulumi.Input<string>;
}