Create Profile
wellarchitected_create_profile | R Documentation |
Create a profile¶
Description¶
Create a profile.
Usage¶
wellarchitected_create_profile(ProfileName, ProfileDescription,
ProfileQuestions, ClientRequestToken, Tags)
Arguments¶
ProfileName |
[required] Name of the profile. |
ProfileDescription |
[required] The profile description. |
ProfileQuestions |
[required] The profile questions. |
ClientRequestToken |
[required] |
Tags |
The tags assigned to the profile. |
Value¶
A list with the following syntax:
list(
ProfileArn = "string",
ProfileVersion = "string"
)
Request syntax¶
svc$create_profile(
ProfileName = "string",
ProfileDescription = "string",
ProfileQuestions = list(
list(
QuestionId = "string",
SelectedChoiceIds = list(
"string"
)
)
),
ClientRequestToken = "string",
Tags = list(
"string"
)
)