1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateFramework`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`framework_name(impl Into<String>)`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::framework_name) / [`set_framework_name(Option<String>)`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::set_framework_name): <p>The unique name of a framework. This name is between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).</p>
    ///   - [`framework_description(impl Into<String>)`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::framework_description) / [`set_framework_description(Option<String>)`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::set_framework_description): <p>An optional description of the framework with a maximum 1,024 characters.</p>
    ///   - [`framework_controls(Vec<FrameworkControl>)`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::framework_controls) / [`set_framework_controls(Option<Vec<FrameworkControl>>)`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::set_framework_controls): <p>A list of the controls that make up the framework. Each control in the list has a name, input parameters, and scope.</p>
    ///   - [`idempotency_token(impl Into<String>)`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::idempotency_token) / [`set_idempotency_token(Option<String>)`](crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::set_idempotency_token): <p>A customer-chosen string that you can use to distinguish between otherwise identical calls to <code>UpdateFrameworkInput</code>. Retrying a successful request with the same idempotency token results in a success message with no action taken.</p>
    /// - On success, responds with [`UpdateFrameworkOutput`](crate::operation::update_framework::UpdateFrameworkOutput) with field(s):
    ///   - [`framework_name(Option<String>)`](crate::operation::update_framework::UpdateFrameworkOutput::framework_name): <p>The unique name of a framework. This name is between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).</p>
    ///   - [`framework_arn(Option<String>)`](crate::operation::update_framework::UpdateFrameworkOutput::framework_arn): <p>An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.</p>
    ///   - [`creation_time(Option<DateTime>)`](crate::operation::update_framework::UpdateFrameworkOutput::creation_time): <p>The date and time that a framework is created, in ISO 8601 representation. The value of <code>CreationTime</code> is accurate to milliseconds. For example, 2020-07-10T15:00:00.000-08:00 represents the 10th of July 2020 at 3:00 PM 8 hours behind UTC.</p>
    /// - On failure, responds with [`SdkError<UpdateFrameworkError>`](crate::operation::update_framework::UpdateFrameworkError)
    pub fn update_framework(
        &self,
    ) -> crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder {
        crate::operation::update_framework::builders::UpdateFrameworkFluentBuilder::new(
            self.handle.clone(),
        )
    }
}