aws-sdk-pinpoint 1.37.0

AWS SDK for Amazon Pinpoint
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteUserEndpoints`](crate::operation::delete_user_endpoints::builders::DeleteUserEndpointsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_id(impl Into<String>)`](crate::operation::delete_user_endpoints::builders::DeleteUserEndpointsFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::delete_user_endpoints::builders::DeleteUserEndpointsFluentBuilder::set_application_id):<br>required: **true**<br><p>The unique identifier for the application. This identifier is displayed as the <b>Project ID</b> on the Amazon Pinpoint console.</p><br>
    ///   - [`user_id(impl Into<String>)`](crate::operation::delete_user_endpoints::builders::DeleteUserEndpointsFluentBuilder::user_id) / [`set_user_id(Option<String>)`](crate::operation::delete_user_endpoints::builders::DeleteUserEndpointsFluentBuilder::set_user_id):<br>required: **true**<br><p>The unique identifier for the user.</p><br>
    /// - On success, responds with [`DeleteUserEndpointsOutput`](crate::operation::delete_user_endpoints::DeleteUserEndpointsOutput) with field(s):
    ///   - [`endpoints_response(Option<EndpointsResponse>)`](crate::operation::delete_user_endpoints::DeleteUserEndpointsOutput::endpoints_response): <p>Provides information about all the endpoints that are associated with a user ID.</p>
    /// - On failure, responds with [`SdkError<DeleteUserEndpointsError>`](crate::operation::delete_user_endpoints::DeleteUserEndpointsError)
    pub fn delete_user_endpoints(&self) -> crate::operation::delete_user_endpoints::builders::DeleteUserEndpointsFluentBuilder {
        crate::operation::delete_user_endpoints::builders::DeleteUserEndpointsFluentBuilder::new(self.handle.clone())
    }
}