aws_sdk_ssm/client/
deregister_patch_baseline_for_patch_group.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeregisterPatchBaselineForPatchGroup`](crate::operation::deregister_patch_baseline_for_patch_group::builders::DeregisterPatchBaselineForPatchGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`baseline_id(impl Into<String>)`](crate::operation::deregister_patch_baseline_for_patch_group::builders::DeregisterPatchBaselineForPatchGroupFluentBuilder::baseline_id) / [`set_baseline_id(Option<String>)`](crate::operation::deregister_patch_baseline_for_patch_group::builders::DeregisterPatchBaselineForPatchGroupFluentBuilder::set_baseline_id):<br>required: **true**<br><p>The ID of the patch baseline to deregister the patch group from.</p><br>
7    ///   - [`patch_group(impl Into<String>)`](crate::operation::deregister_patch_baseline_for_patch_group::builders::DeregisterPatchBaselineForPatchGroupFluentBuilder::patch_group) / [`set_patch_group(Option<String>)`](crate::operation::deregister_patch_baseline_for_patch_group::builders::DeregisterPatchBaselineForPatchGroupFluentBuilder::set_patch_group):<br>required: **true**<br><p>The name of the patch group that should be deregistered from the patch baseline.</p><br>
8    /// - On success, responds with [`DeregisterPatchBaselineForPatchGroupOutput`](crate::operation::deregister_patch_baseline_for_patch_group::DeregisterPatchBaselineForPatchGroupOutput) with field(s):
9    ///   - [`baseline_id(Option<String>)`](crate::operation::deregister_patch_baseline_for_patch_group::DeregisterPatchBaselineForPatchGroupOutput::baseline_id): <p>The ID of the patch baseline the patch group was deregistered from.</p>
10    ///   - [`patch_group(Option<String>)`](crate::operation::deregister_patch_baseline_for_patch_group::DeregisterPatchBaselineForPatchGroupOutput::patch_group): <p>The name of the patch group deregistered from the patch baseline.</p>
11    /// - On failure, responds with [`SdkError<DeregisterPatchBaselineForPatchGroupError>`](crate::operation::deregister_patch_baseline_for_patch_group::DeregisterPatchBaselineForPatchGroupError)
12    pub fn deregister_patch_baseline_for_patch_group(
13        &self,
14    ) -> crate::operation::deregister_patch_baseline_for_patch_group::builders::DeregisterPatchBaselineForPatchGroupFluentBuilder {
15        crate::operation::deregister_patch_baseline_for_patch_group::builders::DeregisterPatchBaselineForPatchGroupFluentBuilder::new(
16            self.handle.clone(),
17        )
18    }
19}