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 [`DisassociateSbomFromPackageVersion`](crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`package_name(impl Into<String>)`](crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder::package_name) / [`set_package_name(Option<String>)`](crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder::set_package_name):<br>required: **true**<br><p>The name of the new software package.</p><br>
    ///   - [`version_name(impl Into<String>)`](crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder::version_name) / [`set_version_name(Option<String>)`](crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder::set_version_name):<br>required: **true**<br><p>The name of the new package version.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.</p><br>
    /// - On success, responds with [`DisassociateSbomFromPackageVersionOutput`](crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionOutput)
    /// - On failure, responds with [`SdkError<DisassociateSbomFromPackageVersionError>`](crate::operation::disassociate_sbom_from_package_version::DisassociateSbomFromPackageVersionError)
    pub fn disassociate_sbom_from_package_version(
        &self,
    ) -> crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder {
        crate::operation::disassociate_sbom_from_package_version::builders::DisassociateSbomFromPackageVersionFluentBuilder::new(self.handle.clone())
    }
}