aws_sdk_detective/client/
batch_get_membership_datasources.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 [`BatchGetMembershipDatasources`](crate::operation::batch_get_membership_datasources::builders::BatchGetMembershipDatasourcesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`graph_arns(impl Into<String>)`](crate::operation::batch_get_membership_datasources::builders::BatchGetMembershipDatasourcesFluentBuilder::graph_arns) / [`set_graph_arns(Option<Vec::<String>>)`](crate::operation::batch_get_membership_datasources::builders::BatchGetMembershipDatasourcesFluentBuilder::set_graph_arns):<br>required: **true**<br><p>The ARN of the behavior graph.</p><br>
7    /// - On success, responds with [`BatchGetMembershipDatasourcesOutput`](crate::operation::batch_get_membership_datasources::BatchGetMembershipDatasourcesOutput) with field(s):
8    ///   - [`membership_datasources(Option<Vec::<MembershipDatasources>>)`](crate::operation::batch_get_membership_datasources::BatchGetMembershipDatasourcesOutput::membership_datasources): <p>Details on the data source package history for an member of the behavior graph.</p>
9    ///   - [`unprocessed_graphs(Option<Vec::<UnprocessedGraph>>)`](crate::operation::batch_get_membership_datasources::BatchGetMembershipDatasourcesOutput::unprocessed_graphs): <p>Graphs that data source package information could not be retrieved for.</p>
10    /// - On failure, responds with [`SdkError<BatchGetMembershipDatasourcesError>`](crate::operation::batch_get_membership_datasources::BatchGetMembershipDatasourcesError)
11    pub fn batch_get_membership_datasources(
12        &self,
13    ) -> crate::operation::batch_get_membership_datasources::builders::BatchGetMembershipDatasourcesFluentBuilder {
14        crate::operation::batch_get_membership_datasources::builders::BatchGetMembershipDatasourcesFluentBuilder::new(self.handle.clone())
15    }
16}