aws_sdk_licensemanager/client/
delete_token.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 [`DeleteToken`](crate::operation::delete_token::builders::DeleteTokenFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`token_id(impl Into<String>)`](crate::operation::delete_token::builders::DeleteTokenFluentBuilder::token_id) / [`set_token_id(Option<String>)`](crate::operation::delete_token::builders::DeleteTokenFluentBuilder::set_token_id):<br>required: **true**<br><p>Token ID.</p><br>
7    /// - On success, responds with [`DeleteTokenOutput`](crate::operation::delete_token::DeleteTokenOutput)
8    /// - On failure, responds with [`SdkError<DeleteTokenError>`](crate::operation::delete_token::DeleteTokenError)
9    pub fn delete_token(&self) -> crate::operation::delete_token::builders::DeleteTokenFluentBuilder {
10        crate::operation::delete_token::builders::DeleteTokenFluentBuilder::new(self.handle.clone())
11    }
12}