aws_sdk_cleanroomsml/client/
get_collaboration_ml_input_channel.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 [`GetCollaborationMLInputChannel`](crate::operation::get_collaboration_ml_input_channel::builders::GetCollaborationMLInputChannelFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`ml_input_channel_arn(impl Into<String>)`](crate::operation::get_collaboration_ml_input_channel::builders::GetCollaborationMLInputChannelFluentBuilder::ml_input_channel_arn) / [`set_ml_input_channel_arn(Option<String>)`](crate::operation::get_collaboration_ml_input_channel::builders::GetCollaborationMLInputChannelFluentBuilder::set_ml_input_channel_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the ML input channel that you want to get.</p><br>
7    ///   - [`collaboration_identifier(impl Into<String>)`](crate::operation::get_collaboration_ml_input_channel::builders::GetCollaborationMLInputChannelFluentBuilder::collaboration_identifier) / [`set_collaboration_identifier(Option<String>)`](crate::operation::get_collaboration_ml_input_channel::builders::GetCollaborationMLInputChannelFluentBuilder::set_collaboration_identifier):<br>required: **true**<br><p>The collaboration ID of the collaboration that contains the ML input channel that you want to get.</p><br>
8    /// - On success, responds with [`GetCollaborationMlInputChannelOutput`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput) with field(s):
9    ///   - [`membership_identifier(String)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::membership_identifier): <p>The membership ID of the membership that contains the ML input channel.</p>
10    ///   - [`collaboration_identifier(String)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::collaboration_identifier): <p>The collaboration ID of the collaboration that contains the ML input channel.</p>
11    ///   - [`ml_input_channel_arn(String)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::ml_input_channel_arn): <p>The Amazon Resource Name (ARN) of the ML input channel.</p>
12    ///   - [`name(String)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::name): <p>The name of the ML input channel.</p>
13    ///   - [`configured_model_algorithm_associations(Vec::<String>)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::configured_model_algorithm_associations): <p>The configured model algorithm associations that were used to create the ML input channel.</p>
14    ///   - [`status(MlInputChannelStatus)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::status): <p>The status of the ML input channel.</p>
15    ///   - [`status_details(Option<StatusDetails>)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::status_details): <p>Details about the status of a resource.</p>
16    ///   - [`retention_in_days(i32)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::retention_in_days): <p>The number of days to retain the data for the ML input channel.</p>
17    ///   - [`number_of_records(Option<i64>)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::number_of_records): <p>The number of records in the ML input channel.</p>
18    ///   - [`privacy_budgets(Option<PrivacyBudgets>)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::privacy_budgets): <p>Returns the privacy budgets that control access to this Clean Rooms ML input channel. Use these budgets to monitor and limit resource consumption over specified time periods.</p>
19    ///   - [`description(Option<String>)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::description): <p>The description of the ML input channel.</p>
20    ///   - [`synthetic_data_configuration(Option<SyntheticDataConfiguration>)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::synthetic_data_configuration): <p>The synthetic data configuration for this ML input channel, including parameters for generating privacy-preserving synthetic data and evaluation scores for measuring the privacy of the generated data.</p>
21    ///   - [`create_time(DateTime)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::create_time): <p>The time at which the ML input channel was created.</p>
22    ///   - [`update_time(DateTime)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::update_time): <p>The most recent time at which the ML input channel was updated.</p>
23    ///   - [`creator_account_id(String)`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMlInputChannelOutput::creator_account_id): <p>The account ID of the member who created the ML input channel.</p>
24    /// - On failure, responds with [`SdkError<GetCollaborationMLInputChannelError>`](crate::operation::get_collaboration_ml_input_channel::GetCollaborationMLInputChannelError)
25    pub fn get_collaboration_ml_input_channel(
26        &self,
27    ) -> crate::operation::get_collaboration_ml_input_channel::builders::GetCollaborationMLInputChannelFluentBuilder {
28        crate::operation::get_collaboration_ml_input_channel::builders::GetCollaborationMLInputChannelFluentBuilder::new(self.handle.clone())
29    }
30}