aws-sdk-location 0.26.0

AWS SDK for Amazon Location Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchDeleteGeofence`](crate::operation::batch_delete_geofence::builders::BatchDeleteGeofenceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`collection_name(impl Into<String>)`](crate::operation::batch_delete_geofence::builders::BatchDeleteGeofenceFluentBuilder::collection_name) / [`set_collection_name(Option<String>)`](crate::operation::batch_delete_geofence::builders::BatchDeleteGeofenceFluentBuilder::set_collection_name): <p>The geofence collection storing the geofences to be deleted.</p>
    ///   - [`geofence_ids(Vec<String>)`](crate::operation::batch_delete_geofence::builders::BatchDeleteGeofenceFluentBuilder::geofence_ids) / [`set_geofence_ids(Option<Vec<String>>)`](crate::operation::batch_delete_geofence::builders::BatchDeleteGeofenceFluentBuilder::set_geofence_ids): <p>The batch of geofences to be deleted.</p>
    /// - On success, responds with [`BatchDeleteGeofenceOutput`](crate::operation::batch_delete_geofence::BatchDeleteGeofenceOutput) with field(s):
    ///   - [`errors(Option<Vec<BatchDeleteGeofenceError>>)`](crate::operation::batch_delete_geofence::BatchDeleteGeofenceOutput::errors): <p>Contains error details for each geofence that failed to delete.</p>
    /// - On failure, responds with [`SdkError<BatchDeleteGeofenceError>`](crate::operation::batch_delete_geofence::BatchDeleteGeofenceError)
    pub fn batch_delete_geofence(
        &self,
    ) -> crate::operation::batch_delete_geofence::builders::BatchDeleteGeofenceFluentBuilder {
        crate::operation::batch_delete_geofence::builders::BatchDeleteGeofenceFluentBuilder::new(
            self.handle.clone(),
        )
    }
}