import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SMSVOICE::ConfigurationSet */ export declare function getConfigurationSet(args: GetConfigurationSetArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConfigurationSetArgs { /** * The name to use for the configuration set. */ configurationSetName: string; } export interface GetConfigurationSetResult { /** * The Amazon Resource Name (ARN) of the ConfigurationSet. */ readonly arn?: string; /** * The default sender ID to set for the ConfigurationSet. */ readonly defaultSenderId?: string; /** * An event destination is a location where you send message events. */ readonly eventDestinations?: outputs.smsvoice.ConfigurationSetEventDestination[]; /** * Set to true to enable message feedback. */ readonly messageFeedbackEnabled?: boolean; /** * The unique identifier for the protect configuration to be associated to the configuration set. */ readonly protectConfigurationId?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SMSVOICE::ConfigurationSet */ export declare function getConfigurationSetOutput(args: GetConfigurationSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetConfigurationSetOutputArgs { /** * The name to use for the configuration set. */ configurationSetName: pulumi.Input; }