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.07 kB
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<GetTenantResult>; 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<GetTenantResult>; export interface GetTenantOutputArgs { /** * The name of the tenant. */ tenantName: pulumi.Input<string>; }