Class: Aws::MailManager::Types::DeliverToQBusinessAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::DeliverToQBusinessAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mailmanager/types.rb
Overview
The action to deliver incoming emails to an Amazon Q Business application for indexing.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_failure_policy ⇒ String
A policy that states what to do in the case of failure.
-
#application_id ⇒ String
The unique identifier of the Amazon Q Business application instance where the email content will be delivered.
-
#index_id ⇒ String
The identifier of the knowledge base index within the Amazon Q Business application where the email content will be stored and indexed.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM Role to use while delivering to Amazon Q Business.
Instance Attribute Details
#action_failure_policy ⇒ String
A policy that states what to do in the case of failure. The action will fail if there are configuration errors. For example, the specified application has been deleted or the role lacks necessary permissions to call the qbusiness:BatchPutDocument API.
907 908 909 910 911 912 913 914 |
# File 'lib/aws-sdk-mailmanager/types.rb', line 907 class DeliverToQBusinessAction < Struct.new( :action_failure_policy, :application_id, :index_id, :role_arn) SENSITIVE = [] include Aws::Structure end |
#application_id ⇒ String
The unique identifier of the Amazon Q Business application instance where the email content will be delivered.
907 908 909 910 911 912 913 914 |
# File 'lib/aws-sdk-mailmanager/types.rb', line 907 class DeliverToQBusinessAction < Struct.new( :action_failure_policy, :application_id, :index_id, :role_arn) SENSITIVE = [] include Aws::Structure end |
#index_id ⇒ String
The identifier of the knowledge base index within the Amazon Q Business application where the email content will be stored and indexed.
907 908 909 910 911 912 913 914 |
# File 'lib/aws-sdk-mailmanager/types.rb', line 907 class DeliverToQBusinessAction < Struct.new( :action_failure_policy, :application_id, :index_id, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM Role to use while delivering to Amazon Q Business. This role must have access to the qbusiness:BatchPutDocument API for the given application and index.
907 908 909 910 911 912 913 914 |
# File 'lib/aws-sdk-mailmanager/types.rb', line 907 class DeliverToQBusinessAction < Struct.new( :action_failure_policy, :application_id, :index_id, :role_arn) SENSITIVE = [] include Aws::Structure end |