aws_sdk_cleanrooms/client/get_collaboration_change_request.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 [`GetCollaborationChangeRequest`](crate::operation::get_collaboration_change_request::builders::GetCollaborationChangeRequestFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`collaboration_identifier(impl Into<String>)`](crate::operation::get_collaboration_change_request::builders::GetCollaborationChangeRequestFluentBuilder::collaboration_identifier) / [`set_collaboration_identifier(Option<String>)`](crate::operation::get_collaboration_change_request::builders::GetCollaborationChangeRequestFluentBuilder::set_collaboration_identifier):<br>required: **true**<br><p>The identifier of the collaboration that the change request is made against.</p><br>
7 /// - [`change_request_identifier(impl Into<String>)`](crate::operation::get_collaboration_change_request::builders::GetCollaborationChangeRequestFluentBuilder::change_request_identifier) / [`set_change_request_identifier(Option<String>)`](crate::operation::get_collaboration_change_request::builders::GetCollaborationChangeRequestFluentBuilder::set_change_request_identifier):<br>required: **true**<br><p>A unique identifier for the change request to retrieve.</p><br>
8 /// - On success, responds with [`GetCollaborationChangeRequestOutput`](crate::operation::get_collaboration_change_request::GetCollaborationChangeRequestOutput) with field(s):
9 /// - [`collaboration_change_request(Option<CollaborationChangeRequest>)`](crate::operation::get_collaboration_change_request::GetCollaborationChangeRequestOutput::collaboration_change_request): <p>The collaboration change request that was requested.</p>
10 /// - On failure, responds with [`SdkError<GetCollaborationChangeRequestError>`](crate::operation::get_collaboration_change_request::GetCollaborationChangeRequestError)
11 pub fn get_collaboration_change_request(
12 &self,
13 ) -> crate::operation::get_collaboration_change_request::builders::GetCollaborationChangeRequestFluentBuilder {
14 crate::operation::get_collaboration_change_request::builders::GetCollaborationChangeRequestFluentBuilder::new(self.handle.clone())
15 }
16}