1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetCodeBindingSource`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`language(impl Into<String>)`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::language) / [`set_language(Option<String>)`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::set_language):<br>required: **true**<br><p>The language of the code binding.</p><br>
    ///   - [`registry_name(impl Into<String>)`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::registry_name) / [`set_registry_name(Option<String>)`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::set_registry_name):<br>required: **true**<br><p>The name of the registry.</p><br>
    ///   - [`schema_name(impl Into<String>)`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::schema_name) / [`set_schema_name(Option<String>)`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::set_schema_name):<br>required: **true**<br><p>The name of the schema.</p><br>
    ///   - [`schema_version(impl Into<String>)`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::schema_version) / [`set_schema_version(Option<String>)`](crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::set_schema_version):<br>required: **false**<br><p>Specifying this limits the results to only this schema version.</p><br>
    /// - On success, responds with [`GetCodeBindingSourceOutput`](crate::operation::get_code_binding_source::GetCodeBindingSourceOutput) with field(s):
    ///   - [`body(Option<Blob>)`](crate::operation::get_code_binding_source::GetCodeBindingSourceOutput::body): (undocumented)
    /// - On failure, responds with [`SdkError<GetCodeBindingSourceError>`](crate::operation::get_code_binding_source::GetCodeBindingSourceError)
    pub fn get_code_binding_source(&self) -> crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder {
        crate::operation::get_code_binding_source::builders::GetCodeBindingSourceFluentBuilder::new(self.handle.clone())
    }
}