ProfilesProfile

class ProfilesProfile : KotlinCustomResource

Resource for managing an AWS Route 53 Profile.

Example Usage

Empty Profile

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.route53.ProfilesProfile("example", {
name: "example",
tags: {
Environment: "dev",
},
});
import pulumi
import pulumi_aws as aws
example = aws.route53.ProfilesProfile("example",
name="example",
tags={
"Environment": "dev",
})
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",
Tags =
{
{ "Environment", "dev" },
},
});
});
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"),
Tags: pulumi.StringMap{
"Environment": pulumi.String("dev"),
},
})
if err != nil {
return err
}
return nil
})
}
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")
.tags(Map.of("Environment", "dev"))
.build());
}
}
resources:
example:
type: aws:route53:ProfilesProfile
properties:
name: example
tags:
Environment: dev

Import

Using pulumi import, import Route 53 Profiles Profile using the example. For example:

$ pulumi import aws:route53/profilesProfile:ProfilesProfile example rp-12345678

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the Profile.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

Name of the Profile.

Link copied to clipboard
val ownerId: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val shareStatus: Output<String>

Share status of the Profile.

Link copied to clipboard
val status: Output<String>

Status of the Profile.

Link copied to clipboard
val statusMessage: Output<String>

Status message of the Profile.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
Link copied to clipboard
val urn: Output<String>