aws_sdk_odb/client/
accept_marketplace_registration.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 [`AcceptMarketplaceRegistration`](crate::operation::accept_marketplace_registration::builders::AcceptMarketplaceRegistrationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`marketplace_registration_token(impl Into<String>)`](crate::operation::accept_marketplace_registration::builders::AcceptMarketplaceRegistrationFluentBuilder::marketplace_registration_token) / [`set_marketplace_registration_token(Option<String>)`](crate::operation::accept_marketplace_registration::builders::AcceptMarketplaceRegistrationFluentBuilder::set_marketplace_registration_token):<br>required: **true**<br><p>The registration token that's generated by Amazon Web Services Marketplace and sent to Oracle Database@Amazon Web Services.</p><br>
7    /// - On success, responds with [`AcceptMarketplaceRegistrationOutput`](crate::operation::accept_marketplace_registration::AcceptMarketplaceRegistrationOutput)
8    /// - On failure, responds with [`SdkError<AcceptMarketplaceRegistrationError>`](crate::operation::accept_marketplace_registration::AcceptMarketplaceRegistrationError)
9    pub fn accept_marketplace_registration(
10        &self,
11    ) -> crate::operation::accept_marketplace_registration::builders::AcceptMarketplaceRegistrationFluentBuilder {
12        crate::operation::accept_marketplace_registration::builders::AcceptMarketplaceRegistrationFluentBuilder::new(self.handle.clone())
13    }
14}