ProfilesAssociation

class ProfilesAssociation : KotlinCustomResource

Resource for managing an AWS Route 53 Profiles Association.

Example Usage

Basic Usage

resources:
example:
type: aws:route53:ProfilesProfile
properties:
name: example
exampleVpc:
type: aws:ec2:Vpc
name: example
properties:
cidr: 10.0.0.0/16
exampleProfilesAssociation:
type: aws:route53:ProfilesAssociation
name: example
properties:
name: example
profileId: ${example.id}
resourceId: ${exampleVpc.id}
tags:
Environment: dev

Import

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

$ pulumi import aws:route53/profilesAssociation:ProfilesAssociation example rpa-id-12345678

Properties

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

Name of the Profile Association. Must match a regex of (?!^[0-9]+$)([a-zA-Z0-9\\-_' ']+).

Link copied to clipboard
val ownerId: Output<String>
Link copied to clipboard
val profileId: Output<String>

ID of the profile associated with the VPC.

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

Resource ID of the VPC the profile to be associated with.

Link copied to clipboard
val status: Output<String>

Status of the Profile Association.

Link copied to clipboard
val statusMessage: Output<String>

Status message of the Profile Association.

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>