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 [`GetIdentityNotificationAttributes`](crate::operation::get_identity_notification_attributes::builders::GetIdentityNotificationAttributesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identities(impl Into<String>)`](crate::operation::get_identity_notification_attributes::builders::GetIdentityNotificationAttributesFluentBuilder::identities) / [`set_identities(Option<Vec::<String>>)`](crate::operation::get_identity_notification_attributes::builders::GetIdentityNotificationAttributesFluentBuilder::set_identities):<br>required: **true**<br><p>A list of one or more identities. You can specify an identity by using its name or by using its Amazon Resource Name (ARN). Examples: <code>user@example.com</code>, <code>example.com</code>, <code>arn:aws:ses:us-east-1:123456789012:identity/example.com</code>.</p><br>
    /// - On success, responds with [`GetIdentityNotificationAttributesOutput`](crate::operation::get_identity_notification_attributes::GetIdentityNotificationAttributesOutput) with field(s):
    ///   - [`notification_attributes(HashMap::<String, IdentityNotificationAttributes>)`](crate::operation::get_identity_notification_attributes::GetIdentityNotificationAttributesOutput::notification_attributes): <p>A map of Identity to IdentityNotificationAttributes.</p>
    /// - On failure, responds with [`SdkError<GetIdentityNotificationAttributesError>`](crate::operation::get_identity_notification_attributes::GetIdentityNotificationAttributesError)
    pub fn get_identity_notification_attributes(
        &self,
    ) -> crate::operation::get_identity_notification_attributes::builders::GetIdentityNotificationAttributesFluentBuilder {
        crate::operation::get_identity_notification_attributes::builders::GetIdentityNotificationAttributesFluentBuilder::new(self.handle.clone())
    }
}