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)

29 lines (28 loc) 1.11 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SES::MultiRegionEndpoint */ export declare function getMultiRegionEndpoint(args: GetMultiRegionEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetMultiRegionEndpointResult>; export interface GetMultiRegionEndpointArgs { /** * The name of the multi-region endpoint (global-endpoint). */ endpointName: string; } export interface GetMultiRegionEndpointResult { /** * An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint). */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SES::MultiRegionEndpoint */ export declare function getMultiRegionEndpointOutput(args: GetMultiRegionEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMultiRegionEndpointResult>; export interface GetMultiRegionEndpointOutputArgs { /** * The name of the multi-region endpoint (global-endpoint). */ endpointName: pulumi.Input<string>; }