aws_sdk_wellarchitected/client/update_lens_review.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateLensReview`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`workload_id(impl Into<String>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::workload_id) / [`set_workload_id(Option<String>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::set_workload_id):<br>required: **true**<br><p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p><br>
/// - [`lens_alias(impl Into<String>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::lens_alias) / [`set_lens_alias(Option<String>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::set_lens_alias):<br>required: **true**<br><p>The alias of the lens.</p> <p>For Amazon Web Services official lenses, this is either the lens alias, such as <code>serverless</code>, or the lens ARN, such as <code>arn:aws:wellarchitected:us-east-1::lens/serverless</code>. Note that some operations (such as ExportLens and CreateLensShare) are not permitted on Amazon Web Services official lenses.</p> <p>For custom lenses, this is the lens ARN, such as <code>arn:aws:wellarchitected:us-west-2:123456789012:lens/0123456789abcdef01234567890abcdef</code>.</p> <p>Each lens is identified by its <code>LensSummary$LensAlias</code>.</p><br>
/// - [`lens_notes(impl Into<String>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::lens_notes) / [`set_lens_notes(Option<String>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::set_lens_notes):<br>required: **false**<br><p>The notes associated with the workload.</p> <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p><br>
/// - [`pillar_notes(impl Into<String>, impl Into<String>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::pillar_notes) / [`set_pillar_notes(Option<HashMap::<String, String>>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::set_pillar_notes):<br>required: **false**<br><p>List of pillar notes of a lens review in a workload.</p> <p>For a review template, these are the notes that will be associated with the workload when the template is applied.</p><br>
/// - [`jira_configuration(JiraSelectedQuestionConfiguration)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::jira_configuration) / [`set_jira_configuration(Option<JiraSelectedQuestionConfiguration>)`](crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::set_jira_configuration):<br>required: **false**<br><p>Configuration of the Jira integration.</p><br>
/// - On success, responds with [`UpdateLensReviewOutput`](crate::operation::update_lens_review::UpdateLensReviewOutput) with field(s):
/// - [`workload_id(Option<String>)`](crate::operation::update_lens_review::UpdateLensReviewOutput::workload_id): <p>The ID assigned to the workload. This ID is unique within an Amazon Web Services Region.</p>
/// - [`lens_review(Option<LensReview>)`](crate::operation::update_lens_review::UpdateLensReviewOutput::lens_review): <p>A lens review of a question.</p>
/// - On failure, responds with [`SdkError<UpdateLensReviewError>`](crate::operation::update_lens_review::UpdateLensReviewError)
pub fn update_lens_review(&self) -> crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder {
crate::operation::update_lens_review::builders::UpdateLensReviewFluentBuilder::new(self.handle.clone())
}
}