aws_sdk_workspacesthinclient/client/
get_software_set.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 [`GetSoftwareSet`](crate::operation::get_software_set::builders::GetSoftwareSetFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::get_software_set::builders::GetSoftwareSetFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_software_set::builders::GetSoftwareSetFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the software set for which to return information.</p><br>
7    /// - On success, responds with [`GetSoftwareSetOutput`](crate::operation::get_software_set::GetSoftwareSetOutput) with field(s):
8    ///   - [`software_set(Option<SoftwareSet>)`](crate::operation::get_software_set::GetSoftwareSetOutput::software_set): <p>Describes a software set.</p>
9    /// - On failure, responds with [`SdkError<GetSoftwareSetError>`](crate::operation::get_software_set::GetSoftwareSetError)
10    pub fn get_software_set(&self) -> crate::operation::get_software_set::builders::GetSoftwareSetFluentBuilder {
11        crate::operation::get_software_set::builders::GetSoftwareSetFluentBuilder::new(self.handle.clone())
12    }
13}