pub struct NotificationChannel {
pub role_arn: String,
pub sns_topic_arn: String,
}Expand description
The Amazon Simple Notification Service (Amazon SNS) topic to which Amazon Textract publishes the completion status of an asynchronous document operation, such as StartDocumentTextDetection.
Fields§
§role_arn: StringThe Amazon Resource Name (ARN) of an IAM role that gives Amazon Textract publishing permissions to the Amazon SNS topic.
sns_topic_arn: StringThe Amazon SNS topic that Amazon Textract posts the completion status to.
Trait Implementations§
Source§impl Clone for NotificationChannel
impl Clone for NotificationChannel
Source§fn clone(&self) -> NotificationChannel
fn clone(&self) -> NotificationChannel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NotificationChannel
impl Debug for NotificationChannel
Source§impl Default for NotificationChannel
impl Default for NotificationChannel
Source§fn default() -> NotificationChannel
fn default() -> NotificationChannel
Returns the “default value” for a type. Read more
Source§impl PartialEq for NotificationChannel
impl PartialEq for NotificationChannel
Source§impl Serialize for NotificationChannel
impl Serialize for NotificationChannel
impl StructuralPartialEq for NotificationChannel
Auto Trait Implementations§
impl Freeze for NotificationChannel
impl RefUnwindSafe for NotificationChannel
impl Send for NotificationChannel
impl Sync for NotificationChannel
impl Unpin for NotificationChannel
impl UnwindSafe for NotificationChannel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more