aws-sdk-greengrass 0.26.0

AWS SDK for AWS Greengrass
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteDeviceDefinition`](crate::operation::delete_device_definition::builders::DeleteDeviceDefinitionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`device_definition_id(impl Into<String>)`](crate::operation::delete_device_definition::builders::DeleteDeviceDefinitionFluentBuilder::device_definition_id) / [`set_device_definition_id(Option<String>)`](crate::operation::delete_device_definition::builders::DeleteDeviceDefinitionFluentBuilder::set_device_definition_id): The ID of the device definition.
    /// - On success, responds with [`DeleteDeviceDefinitionOutput`](crate::operation::delete_device_definition::DeleteDeviceDefinitionOutput)
    /// - On failure, responds with [`SdkError<DeleteDeviceDefinitionError>`](crate::operation::delete_device_definition::DeleteDeviceDefinitionError)
    pub fn delete_device_definition(
        &self,
    ) -> crate::operation::delete_device_definition::builders::DeleteDeviceDefinitionFluentBuilder
    {
        crate::operation::delete_device_definition::builders::DeleteDeviceDefinitionFluentBuilder::new(self.handle.clone())
    }
}