aws_sdk_ses/client/get_identity_notification_attributes.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetIdentityNotificationAttributes`](crate::operation::get_identity_notification_attributes::builders::GetIdentityNotificationAttributesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`GetIdentityNotificationAttributesOutput`](crate::operation::get_identity_notification_attributes::GetIdentityNotificationAttributesOutput) with field(s):
8 /// - [`notification_attributes(HashMap::<String, IdentityNotificationAttributes>)`](crate::operation::get_identity_notification_attributes::GetIdentityNotificationAttributesOutput::notification_attributes): <p>A map of Identity to IdentityNotificationAttributes.</p>
9 /// - On failure, responds with [`SdkError<GetIdentityNotificationAttributesError>`](crate::operation::get_identity_notification_attributes::GetIdentityNotificationAttributesError)
10 pub fn get_identity_notification_attributes(
11 &self,
12 ) -> crate::operation::get_identity_notification_attributes::builders::GetIdentityNotificationAttributesFluentBuilder {
13 crate::operation::get_identity_notification_attributes::builders::GetIdentityNotificationAttributesFluentBuilder::new(self.handle.clone())
14 }
15}