All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.chime.kotlin.VoiceConnectorArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.chime.kotlin

import com.pulumi.aws.chime.VoiceConnectorArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * Enables you to connect your phone system to the telephone network at a substantial cost savings by using SIP trunking.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as aws from "@pulumi/aws";
 * const test = new aws.chime.VoiceConnector("test", {
 *     name: "connector-test-1",
 *     requireEncryption: true,
 *     awsRegion: "us-east-1",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_aws as aws
 * test = aws.chime.VoiceConnector("test",
 *     name="connector-test-1",
 *     require_encryption=True,
 *     aws_region="us-east-1")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Aws = Pulumi.Aws;
 * return await Deployment.RunAsync(() =>
 * {
 *     var test = new Aws.Chime.VoiceConnector("test", new()
 *     {
 *         Name = "connector-test-1",
 *         RequireEncryption = true,
 *         AwsRegion = "us-east-1",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/chime"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := chime.NewVoiceConnector(ctx, "test", &chime.VoiceConnectorArgs{
 * 			Name:              pulumi.String("connector-test-1"),
 * 			RequireEncryption: pulumi.Bool(true),
 * 			AwsRegion:         pulumi.String("us-east-1"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.aws.chime.VoiceConnector;
 * import com.pulumi.aws.chime.VoiceConnectorArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 *     public static void stack(Context ctx) {
 *         var test = new VoiceConnector("test", VoiceConnectorArgs.builder()
 *             .name("connector-test-1")
 *             .requireEncryption(true)
 *             .awsRegion("us-east-1")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   test:
 *     type: aws:chime:VoiceConnector
 *     properties:
 *       name: connector-test-1
 *       requireEncryption: true
 *       awsRegion: us-east-1
 * ```
 * 
 * ## Import
 * Using `pulumi import`, import Configuration Recorder using the name. For example:
 * ```sh
 * $ pulumi import aws:chime/voiceConnector:VoiceConnector test example
 * ```
 * @property awsRegion The AWS Region in which the Amazon Chime Voice Connector is created. Default value: `us-east-1`
 * @property name The name of the Amazon Chime Voice Connector.
 * @property requireEncryption When enabled, requires encryption for the Amazon Chime Voice Connector.
 * The following arguments are optional:
 * @property tags Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
 */
public data class VoiceConnectorArgs(
    public val awsRegion: Output? = null,
    public val name: Output? = null,
    public val requireEncryption: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.chime.VoiceConnectorArgs =
        com.pulumi.aws.chime.VoiceConnectorArgs.builder()
            .awsRegion(awsRegion?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .requireEncryption(requireEncryption?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            ).build()
}

/**
 * Builder for [VoiceConnectorArgs].
 */
@PulumiTagMarker
public class VoiceConnectorArgsBuilder internal constructor() {
    private var awsRegion: Output? = null

    private var name: Output? = null

    private var requireEncryption: Output? = null

    private var tags: Output>? = null

    /**
     * @param value The AWS Region in which the Amazon Chime Voice Connector is created. Default value: `us-east-1`
     */
    @JvmName("rxwwroyahyawismd")
    public suspend fun awsRegion(`value`: Output) {
        this.awsRegion = value
    }

    /**
     * @param value The name of the Amazon Chime Voice Connector.
     */
    @JvmName("egfyccqbrdhsqbdf")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value When enabled, requires encryption for the Amazon Chime Voice Connector.
     * The following arguments are optional:
     */
    @JvmName("detwgsymdtjkvkju")
    public suspend fun requireEncryption(`value`: Output) {
        this.requireEncryption = value
    }

    /**
     * @param value Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
     */
    @JvmName("yygfesinqojqvpnh")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value The AWS Region in which the Amazon Chime Voice Connector is created. Default value: `us-east-1`
     */
    @JvmName("cmbtieqdxyvujxqp")
    public suspend fun awsRegion(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.awsRegion = mapped
    }

    /**
     * @param value The name of the Amazon Chime Voice Connector.
     */
    @JvmName("fnobvqtrxnujlkth")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value When enabled, requires encryption for the Amazon Chime Voice Connector.
     * The following arguments are optional:
     */
    @JvmName("boyugyhjjwmgwhpo")
    public suspend fun requireEncryption(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.requireEncryption = mapped
    }

    /**
     * @param value Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
     */
    @JvmName("ajpkhslbfxpuxphn")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values Key-value mapping of resource tags. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
     */
    @JvmName("kdpnkqokpdmkoaiw")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): VoiceConnectorArgs = VoiceConnectorArgs(
        awsRegion = awsRegion,
        name = name,
        requireEncryption = requireEncryption,
        tags = tags,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy