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.68 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SMSVOICE::ProtectConfiguration */ export declare function getProtectConfiguration(args: GetProtectConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetProtectConfigurationResult>; export interface GetProtectConfigurationArgs { /** * The unique identifier for the protect configuration. */ protectConfigurationId: string; } export interface GetProtectConfigurationResult { /** * The Amazon Resource Name (ARN) of the protect configuration. */ readonly arn?: string; /** * An array of CountryRule containing the rules for the NumberCapability. */ readonly countryRuleSet?: outputs.smsvoice.ProtectConfigurationCountryRuleSet; /** * When set to true deletion protection is enabled and protect configuration cannot be deleted. By default this is set to false. */ readonly deletionProtectionEnabled?: boolean; /** * The unique identifier for the protect configuration. */ readonly protectConfigurationId?: string; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SMSVOICE::ProtectConfiguration */ export declare function getProtectConfigurationOutput(args: GetProtectConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProtectConfigurationResult>; export interface GetProtectConfigurationOutputArgs { /** * The unique identifier for the protect configuration. */ protectConfigurationId: pulumi.Input<string>; }