1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetSecurityControls`](crate::operation::batch_get_security_controls::builders::BatchGetSecurityControlsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`security_control_ids(impl Into<String>)`](crate::operation::batch_get_security_controls::builders::BatchGetSecurityControlsFluentBuilder::security_control_ids) / [`set_security_control_ids(Option<Vec::<String>>)`](crate::operation::batch_get_security_controls::builders::BatchGetSecurityControlsFluentBuilder::set_security_control_ids):<br>required: **true**<br><p>A list of security controls (identified with <code>SecurityControlId</code>, <code>SecurityControlArn</code>, or a mix of both parameters). The security control ID or Amazon Resource Name (ARN) is the same across standards.</p><br>
    /// - On success, responds with [`BatchGetSecurityControlsOutput`](crate::operation::batch_get_security_controls::BatchGetSecurityControlsOutput) with field(s):
    ///   - [`security_controls(Option<Vec::<SecurityControl>>)`](crate::operation::batch_get_security_controls::BatchGetSecurityControlsOutput::security_controls): <p>An array that returns the identifier, Amazon Resource Name (ARN), and other details about a security control. The same information is returned whether the request includes <code>SecurityControlId</code> or <code>SecurityControlArn</code>.</p>
    ///   - [`unprocessed_ids(Option<Vec::<UnprocessedSecurityControl>>)`](crate::operation::batch_get_security_controls::BatchGetSecurityControlsOutput::unprocessed_ids): <p>A security control (identified with <code>SecurityControlId</code>, <code>SecurityControlArn</code>, or a mix of both parameters) for which details cannot be returned.</p>
    /// - On failure, responds with [`SdkError<BatchGetSecurityControlsError>`](crate::operation::batch_get_security_controls::BatchGetSecurityControlsError)
    pub fn batch_get_security_controls(&self) -> crate::operation::batch_get_security_controls::builders::BatchGetSecurityControlsFluentBuilder {
        crate::operation::batch_get_security_controls::builders::BatchGetSecurityControlsFluentBuilder::new(self.handle.clone())
    }
}