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)

34 lines (33 loc) 1.1 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SSMContacts::Contact */ export declare function getContact(args: GetContactArgs, opts?: pulumi.InvokeOptions): Promise<GetContactResult>; export interface GetContactArgs { /** * The Amazon Resource Name (ARN) of the contact. */ arn: string; } export interface GetContactResult { /** * The Amazon Resource Name (ARN) of the contact. */ readonly arn?: string; /** * Name of the contact. String value with 3 to 256 characters. Only alphabetical, space, numeric characters, dash, or underscore allowed. */ readonly displayName?: string; readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SSMContacts::Contact */ export declare function getContactOutput(args: GetContactOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContactResult>; export interface GetContactOutputArgs { /** * The Amazon Resource Name (ARN) of the contact. */ arn: pulumi.Input<string>; }