Update Profile
| wellarchitected_update_profile | R Documentation |
Update a profile¶
Description¶
Update a profile.
Usage¶
Arguments¶
ProfileArn[required] The profile ARN.
ProfileDescriptionThe profile description.
ProfileQuestionsProfile questions.
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"
)
)
)