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)

45 lines (44 loc) 1.42 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SMSVOICE::SenderId */ export declare function getSenderId(args: GetSenderIdArgs, opts?: pulumi.InvokeOptions): Promise<GetSenderIdResult>; export interface GetSenderIdArgs { /** * The two-character code, in ISO 3166-1 alpha-2 format, for the country or region. */ isoCountryCode: string; /** * The sender ID string to request. */ senderId: string; } export interface GetSenderIdResult { /** * The Amazon Resource Name (ARN) associated with the SenderId. */ readonly arn?: string; /** * When set to true the sender ID can't be deleted. By default this is set to false. */ readonly deletionProtectionEnabled?: boolean; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SMSVOICE::SenderId */ export declare function getSenderIdOutput(args: GetSenderIdOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSenderIdResult>; export interface GetSenderIdOutputArgs { /** * The two-character code, in ISO 3166-1 alpha-2 format, for the country or region. */ isoCountryCode: pulumi.Input<string>; /** * The sender ID string to request. */ senderId: pulumi.Input<string>; }