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)

49 lines (48 loc) 1.68 kB
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<GetConfigurationSetResult>; 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<GetConfigurationSetResult>; export interface GetConfigurationSetOutputArgs { /** * The name to use for the configuration set. */ configurationSetName: pulumi.Input<string>; }