Get Profile
wellarchitected_get_profile | R Documentation |
Get profile information¶
Description¶
Get profile information.
Usage¶
Arguments¶
ProfileArn
[required] The profile ARN.
ProfileVersion
The profile version.
Value¶
A list with the following syntax:
list(
Profile = list(
ProfileArn = "string",
ProfileVersion = "string",
ProfileName = "string",
ProfileDescription = "string",
ProfileQuestions = list(
list(
QuestionId = "string",
QuestionTitle = "string",
QuestionDescription = "string",
QuestionChoices = list(
list(
ChoiceId = "string",
ChoiceTitle = "string",
ChoiceDescription = "string"
)
),
SelectedChoiceIds = list(
"string"
),
MinSelectedChoices = 123,
MaxSelectedChoices = 123
)
),
Owner = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
),
ShareInvitationId = "string",
Tags = list(
"string"
)
)
)