ProfilesResourceAssociationArgs

data class ProfilesResourceAssociationArgs(val name: Output<String>? = null, val profileId: Output<String>? = null, val resourceArn: Output<String>? = null, val resourceProperties: Output<String>? = null, val timeouts: Output<ProfilesResourceAssociationTimeoutsArgs>? = null) : ConvertibleToJava<ProfilesResourceAssociationArgs>

Resource for managing an AWS Route 53 Profiles Resource 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
exampleZone:
type: aws:route53:Zone
name: example
properties:
name: example.com
vpcs:
- vpcId: ${exampleVpc.id}
exampleProfilesResourceAssociation:
type: aws:route53:ProfilesResourceAssociation
name: example
properties:
name: example
profileId: ${example.id}
resourceArn: ${exampleZone.arn}

Import

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

$ pulumi import aws:route53/profilesResourceAssociation:ProfilesResourceAssociation example rpa-id-12345678

Constructors

Link copied to clipboard
constructor(name: Output<String>? = null, profileId: Output<String>? = null, resourceArn: Output<String>? = null, resourceProperties: Output<String>? = null, timeouts: Output<ProfilesResourceAssociationTimeoutsArgs>? = null)

Properties

Link copied to clipboard
val name: Output<String>? = null

Name of the Profile Resource Association.

Link copied to clipboard
val profileId: Output<String>? = null

ID of the profile associated with the VPC.

Link copied to clipboard
val resourceArn: Output<String>? = null

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

Link copied to clipboard
val resourceProperties: Output<String>? = null

Resource properties for the resource to be associated with the profile.

Link copied to clipboard

Functions

Link copied to clipboard
open override fun toJava(): ProfilesResourceAssociationArgs