@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)
33 lines (32 loc) • 1.01 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::SMSVOICE::OptOutList
*/
export declare function getOptOutList(args: GetOptOutListArgs, opts?: pulumi.InvokeOptions): Promise<GetOptOutListResult>;
export interface GetOptOutListArgs {
/**
* The name of the new OptOutList.
*/
optOutListName: string;
}
export interface GetOptOutListResult {
/**
* The Amazon Resource Name (ARN) for the OptOutList.
*/
readonly arn?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::SMSVOICE::OptOutList
*/
export declare function getOptOutListOutput(args: GetOptOutListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOptOutListResult>;
export interface GetOptOutListOutputArgs {
/**
* The name of the new OptOutList.
*/
optOutListName: pulumi.Input<string>;
}