Create Profile
route53profiles_create_profile | R Documentation |
Creates an empty Route 53 Profile¶
Description¶
Creates an empty Route 53 Profile.
Usage¶
Arguments¶
ClientToken
[required]
ClientToken
is an idempotency token that ensures a call tocreate_profile
completes only once. You choose the value to pass. For example, an issue might prevent you from getting a response fromcreate_profile
. In this case, safely retry your call tocreate_profile
by using the samecreate_profile
parameter value.Name
[required] A name for the Profile.
Tags
A list of the tag keys and values that you want to associate with the Route 53 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"
)
)