com.pulumi.aws.route53.kotlin.ProfilesProfile.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.kotlin.outputs.ProfilesProfileTimeouts
import com.pulumi.aws.route53.kotlin.outputs.ProfilesProfileTimeouts.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
/**
* Builder for [ProfilesProfile].
*/
@PulumiTagMarker
public class ProfilesProfileResourceBuilder internal constructor() {
public var name: String? = null
public var args: ProfilesProfileArgs = ProfilesProfileArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend ProfilesProfileArgsBuilder.() -> Unit) {
val builder = ProfilesProfileArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): ProfilesProfile {
val builtJavaResource = com.pulumi.aws.route53.ProfilesProfile(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return ProfilesProfile(builtJavaResource)
}
}
/**
* Resource for managing an AWS Route 53 Profile.
* ## Example Usage
* ### Empty Profile
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const example = new aws.route53.ProfilesProfile("example", {name: "example"});
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* example = aws.route53.ProfilesProfile("example", name="example")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var example = new Aws.Route53.ProfilesProfile("example", new()
* {
* Name = "example",
* });
* });
* ```
* ```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.NewProfilesProfile(ctx, "example", &route53.ProfilesProfileArgs{
* Name: pulumi.String("example"),
* })
* 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.ProfilesProfile;
* import com.pulumi.aws.route53.ProfilesProfileArgs;
* 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 example = new ProfilesProfile("example", ProfilesProfileArgs.builder()
* .name("example")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: aws:route53:ProfilesProfile
* properties:
* name: example
* ```
*
* ## Import
* Using `pulumi import`, import Route 53 Profiles Profile using the `example`. For example:
* ```sh
* $ pulumi import aws:route53/profilesProfile:ProfilesProfile example rp-12345678
* ```
*/
public class ProfilesProfile internal constructor(
override val javaResource: com.pulumi.aws.route53.ProfilesProfile,
) : KotlinCustomResource(javaResource, ProfilesProfileMapper) {
/**
* ARN of the Profile.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* Name of the Profile.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
public val ownerId: Output
get() = javaResource.ownerId().applyValue({ args0 -> args0 })
/**
* Share status of the Profile. Valid values [AWS docs](https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53profiles_Profile.html)
*/
public val shareStatus: Output
get() = javaResource.shareStatus().applyValue({ args0 -> args0 })
/**
* Status of the Profile. Valid values [AWS docs](https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53profiles_Profile.html)
*/
public val status: Output
get() = javaResource.status().applyValue({ args0 -> args0 })
/**
* Status message of the Profile.
*/
public val statusMessage: Output
get() = javaResource.statusMessage().applyValue({ args0 -> args0 })
public val tags: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy