Skip to content

Update Profile

wellarchitected_update_profile R Documentation

Update a profile

Description

Update a profile.

Usage

wellarchitected_update_profile(ProfileArn, ProfileDescription,
  ProfileQuestions)

Arguments

ProfileArn

[required] The profile ARN.

ProfileDescription

The profile description.

ProfileQuestions

Profile 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"
    )
  )
)

Request syntax

svc$update_profile(
  ProfileArn = "string",
  ProfileDescription = "string",
  ProfileQuestions = list(
    list(
      QuestionId = "string",
      SelectedChoiceIds = list(
        "string"
      )
    )
  )
)