Skip to content

Get Profile Association

route53profiles_get_profile_association R Documentation

Retrieves a Route 53 Profile association for a VPC

Description

Retrieves a Route 53 Profile association for a VPC. A VPC can have only one Profile association, but a Profile can be associated with up to 5000 VPCs.

Usage

route53profiles_get_profile_association(ProfileAssociationId)

Arguments

ProfileAssociationId

[required] The identifier of the association you want to get information about.

Value

A list with the following syntax:

list(
  ProfileAssociation = list(
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    Id = "string",
    ModificationTime = as.POSIXct(
      "2015-01-01"
    ),
    Name = "string",
    OwnerId = "string",
    ProfileId = "string",
    ResourceId = "string",
    Status = "COMPLETE"|"DELETING"|"UPDATING"|"CREATING"|"DELETED"|"FAILED",
    StatusMessage = "string"
  )
)

Request syntax

svc$get_profile_association(
  ProfileAssociationId = "string"
)