aws_sdk_voiceid/client/
describe_fraudster.rs

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 [`DescribeFraudster`](crate::operation::describe_fraudster::builders::DescribeFraudsterFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_id(impl Into<String>)`](crate::operation::describe_fraudster::builders::DescribeFraudsterFluentBuilder::domain_id) / [`set_domain_id(Option<String>)`](crate::operation::describe_fraudster::builders::DescribeFraudsterFluentBuilder::set_domain_id):<br>required: **true**<br><p>The identifier of the domain that contains the fraudster.</p><br>
    ///   - [`fraudster_id(impl Into<String>)`](crate::operation::describe_fraudster::builders::DescribeFraudsterFluentBuilder::fraudster_id) / [`set_fraudster_id(Option<String>)`](crate::operation::describe_fraudster::builders::DescribeFraudsterFluentBuilder::set_fraudster_id):<br>required: **true**<br><p>The identifier of the fraudster you are describing.</p><br>
    /// - On success, responds with [`DescribeFraudsterOutput`](crate::operation::describe_fraudster::DescribeFraudsterOutput) with field(s):
    ///   - [`fraudster(Option<Fraudster>)`](crate::operation::describe_fraudster::DescribeFraudsterOutput::fraudster): <p>Information about the specified fraudster.</p>
    /// - On failure, responds with [`SdkError<DescribeFraudsterError>`](crate::operation::describe_fraudster::DescribeFraudsterError)
    pub fn describe_fraudster(&self) -> crate::operation::describe_fraudster::builders::DescribeFraudsterFluentBuilder {
        crate::operation::describe_fraudster::builders::DescribeFraudsterFluentBuilder::new(self.handle.clone())
    }
}