Skip to content

Get Profile

route53profiles_get_profile R Documentation

Returns information about a specified Route 53 Profile, such as whether whether the Profile is shared, and the current status of the Profile

Description

Returns information about a specified Route 53 Profile, such as whether whether the Profile is shared, and the current status of the Profile.

Usage

route53profiles_get_profile(ProfileId)

Arguments

ProfileId

[required] ID of the Profile.

Value

A list with the following syntax:

list(
  Profile = list(
    Arn = "string",
    ClientToken = "string",
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    Id = "string",
    ModificationTime = as.POSIXct(
      "2015-01-01"
    ),
    Name = "string",
    OwnerId = "string",
    ShareStatus = "NOT_SHARED"|"SHARED_WITH_ME"|"SHARED_BY_ME",
    Status = "COMPLETE"|"DELETING"|"UPDATING"|"CREATING"|"DELETED"|"FAILED",
    StatusMessage = "string"
  )
)

Request syntax

svc$get_profile(
  ProfileId = "string"
)