aws_sdk_ssm/client/delete_parameter.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 [`DeleteParameter`](crate::operation::delete_parameter::builders::DeleteParameterFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::delete_parameter::builders::DeleteParameterFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_parameter::builders::DeleteParameterFluentBuilder::set_name):<br>required: **true**<br><p>The name of the parameter to delete.</p><note> <p>You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.</p> </note><br>
7 /// - On success, responds with [`DeleteParameterOutput`](crate::operation::delete_parameter::DeleteParameterOutput)
8 /// - On failure, responds with [`SdkError<DeleteParameterError>`](crate::operation::delete_parameter::DeleteParameterError)
9 pub fn delete_parameter(&self) -> crate::operation::delete_parameter::builders::DeleteParameterFluentBuilder {
10 crate::operation::delete_parameter::builders::DeleteParameterFluentBuilder::new(self.handle.clone())
11 }
12}