aws_sdk_securityhub/client/batch_disable_standards.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 [`BatchDisableStandards`](crate::operation::batch_disable_standards::builders::BatchDisableStandardsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`standards_subscription_arns(impl Into<String>)`](crate::operation::batch_disable_standards::builders::BatchDisableStandardsFluentBuilder::standards_subscription_arns) / [`set_standards_subscription_arns(Option<Vec::<String>>)`](crate::operation::batch_disable_standards::builders::BatchDisableStandardsFluentBuilder::set_standards_subscription_arns):<br>required: **true**<br><p>The ARNs of the standards subscriptions to disable.</p><br>
7 /// - On success, responds with [`BatchDisableStandardsOutput`](crate::operation::batch_disable_standards::BatchDisableStandardsOutput) with field(s):
8 /// - [`standards_subscriptions(Option<Vec::<StandardsSubscription>>)`](crate::operation::batch_disable_standards::BatchDisableStandardsOutput::standards_subscriptions): <p>The details of the standards subscriptions that were disabled.</p>
9 /// - On failure, responds with [`SdkError<BatchDisableStandardsError>`](crate::operation::batch_disable_standards::BatchDisableStandardsError)
10 pub fn batch_disable_standards(&self) -> crate::operation::batch_disable_standards::builders::BatchDisableStandardsFluentBuilder {
11 crate::operation::batch_disable_standards::builders::BatchDisableStandardsFluentBuilder::new(self.handle.clone())
12 }
13}