import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SES::Tenant */ export declare function getTenant(args: GetTenantArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTenantArgs { /** * The name of the tenant. */ tenantName: string; } export interface GetTenantResult { /** * Amazon Resource Name (ARN) of the tenant. */ readonly arn?: string; /** * The list of resources to associate with the tenant. */ readonly resourceAssociations?: outputs.ses.TenantResourceAssociation[]; /** * The tags (keys and values) associated with the tenant. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SES::Tenant */ export declare function getTenantOutput(args: GetTenantOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTenantOutputArgs { /** * The name of the tenant. */ tenantName: pulumi.Input; }