com.pulumi.aws.route53.kotlin.TrafficPolicyInstanceArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.route53.kotlin
import com.pulumi.aws.route53.TrafficPolicyInstanceArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Provides a Route53 traffic policy instance resource.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const test = new aws.route53.TrafficPolicyInstance("test", {
* name: "test.example.com",
* trafficPolicyId: "b3gb108f-ea6f-45a5-baab-9d112d8b4037",
* trafficPolicyVersion: 1,
* hostedZoneId: "Z033120931TAQO548OGJC",
* ttl: 360,
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* test = aws.route53.TrafficPolicyInstance("test",
* name="test.example.com",
* traffic_policy_id="b3gb108f-ea6f-45a5-baab-9d112d8b4037",
* traffic_policy_version=1,
* hosted_zone_id="Z033120931TAQO548OGJC",
* ttl=360)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var test = new Aws.Route53.TrafficPolicyInstance("test", new()
* {
* Name = "test.example.com",
* TrafficPolicyId = "b3gb108f-ea6f-45a5-baab-9d112d8b4037",
* TrafficPolicyVersion = 1,
* HostedZoneId = "Z033120931TAQO548OGJC",
* Ttl = 360,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := route53.NewTrafficPolicyInstance(ctx, "test", &route53.TrafficPolicyInstanceArgs{
* Name: pulumi.String("test.example.com"),
* TrafficPolicyId: pulumi.String("b3gb108f-ea6f-45a5-baab-9d112d8b4037"),
* TrafficPolicyVersion: pulumi.Int(1),
* HostedZoneId: pulumi.String("Z033120931TAQO548OGJC"),
* Ttl: pulumi.Int(360),
* })
* 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.route53.TrafficPolicyInstance;
* import com.pulumi.aws.route53.TrafficPolicyInstanceArgs;
* 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 TrafficPolicyInstance("test", TrafficPolicyInstanceArgs.builder()
* .name("test.example.com")
* .trafficPolicyId("b3gb108f-ea6f-45a5-baab-9d112d8b4037")
* .trafficPolicyVersion(1)
* .hostedZoneId("Z033120931TAQO548OGJC")
* .ttl(360)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* test:
* type: aws:route53:TrafficPolicyInstance
* properties:
* name: test.example.com
* trafficPolicyId: b3gb108f-ea6f-45a5-baab-9d112d8b4037
* trafficPolicyVersion: 1
* hostedZoneId: Z033120931TAQO548OGJC
* ttl: 360
* ```
*
* ## Import
* Using `pulumi import`, import Route53 traffic policy instance using its id. For example:
* ```sh
* $ pulumi import aws:route53/trafficPolicyInstance:TrafficPolicyInstance test df579d9a-6396-410e-ac22-e7ad60cf9e7e
* ```
* @property hostedZoneId ID of the hosted zone that you want Amazon Route 53 to create resource record sets in by using the configuration in a traffic policy.
* @property name Domain name for which Amazon Route 53 responds to DNS queries by using the resource record sets that Route 53 creates for this traffic policy instance.
* @property trafficPolicyId ID of the traffic policy that you want to use to create resource record sets in the specified hosted zone.
* @property trafficPolicyVersion Version of the traffic policy
* @property ttl TTL that you want Amazon Route 53 to assign to all the resource record sets that it creates in the specified hosted zone.
*/
public data class TrafficPolicyInstanceArgs(
public val hostedZoneId: Output? = null,
public val name: Output? = null,
public val trafficPolicyId: Output? = null,
public val trafficPolicyVersion: Output? = null,
public val ttl: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.route53.TrafficPolicyInstanceArgs =
com.pulumi.aws.route53.TrafficPolicyInstanceArgs.builder()
.hostedZoneId(hostedZoneId?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.trafficPolicyId(trafficPolicyId?.applyValue({ args0 -> args0 }))
.trafficPolicyVersion(trafficPolicyVersion?.applyValue({ args0 -> args0 }))
.ttl(ttl?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TrafficPolicyInstanceArgs].
*/
@PulumiTagMarker
public class TrafficPolicyInstanceArgsBuilder internal constructor() {
private var hostedZoneId: Output? = null
private var name: Output? = null
private var trafficPolicyId: Output? = null
private var trafficPolicyVersion: Output? = null
private var ttl: Output? = null
/**
* @param value ID of the hosted zone that you want Amazon Route 53 to create resource record sets in by using the configuration in a traffic policy.
*/
@JvmName("pasrspouhyadwris")
public suspend fun hostedZoneId(`value`: Output) {
this.hostedZoneId = value
}
/**
* @param value Domain name for which Amazon Route 53 responds to DNS queries by using the resource record sets that Route 53 creates for this traffic policy instance.
*/
@JvmName("bxvcjmjgoncmwlnb")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value ID of the traffic policy that you want to use to create resource record sets in the specified hosted zone.
*/
@JvmName("fwyojfqyxdghoyni")
public suspend fun trafficPolicyId(`value`: Output) {
this.trafficPolicyId = value
}
/**
* @param value Version of the traffic policy
*/
@JvmName("glcrjlfrbvljakyk")
public suspend fun trafficPolicyVersion(`value`: Output) {
this.trafficPolicyVersion = value
}
/**
* @param value TTL that you want Amazon Route 53 to assign to all the resource record sets that it creates in the specified hosted zone.
*/
@JvmName("kkokllhnpcdsgkqn")
public suspend fun ttl(`value`: Output) {
this.ttl = value
}
/**
* @param value ID of the hosted zone that you want Amazon Route 53 to create resource record sets in by using the configuration in a traffic policy.
*/
@JvmName("dpxjtyucnhoootsy")
public suspend fun hostedZoneId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.hostedZoneId = mapped
}
/**
* @param value Domain name for which Amazon Route 53 responds to DNS queries by using the resource record sets that Route 53 creates for this traffic policy instance.
*/
@JvmName("wofuedutvaukneaq")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value ID of the traffic policy that you want to use to create resource record sets in the specified hosted zone.
*/
@JvmName("jyxrlbcjxhlccetr")
public suspend fun trafficPolicyId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.trafficPolicyId = mapped
}
/**
* @param value Version of the traffic policy
*/
@JvmName("wdwblfgircrswlnk")
public suspend fun trafficPolicyVersion(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.trafficPolicyVersion = mapped
}
/**
* @param value TTL that you want Amazon Route 53 to assign to all the resource record sets that it creates in the specified hosted zone.
*/
@JvmName("xykvueqxcnjobnmd")
public suspend fun ttl(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ttl = mapped
}
internal fun build(): TrafficPolicyInstanceArgs = TrafficPolicyInstanceArgs(
hostedZoneId = hostedZoneId,
name = name,
trafficPolicyId = trafficPolicyId,
trafficPolicyVersion = trafficPolicyVersion,
ttl = ttl,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy