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; 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; export interface GetSenderIdOutputArgs { /** * The two-character code, in ISO 3166-1 alpha-2 format, for the country or region. */ isoCountryCode: pulumi.Input; /** * The sender ID string to request. */ senderId: pulumi.Input; }