Class: Aws::PinpointEmail::Types::InboxPlacementTrackingOption
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointEmail::Types::InboxPlacementTrackingOption
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointemail/types.rb
 
Overview
An object that contains information about the inbox placement data settings for a verified domain thatâs associated with your AWS account. This data is available only if you enabled the Deliverability dashboard for the domain (âPutDeliverabilityDashboardOption` operation).
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #global  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether inbox placement data is being tracked for the domain.
 - 
  
    
      #tracked_isps  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of strings, one for each major email provider that the inbox placement data applies to.
 
Instance Attribute Details
#global ⇒ Boolean
Specifies whether inbox placement data is being tracked for the domain.
      1718 1719 1720 1721 1722 1723  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 1718 class InboxPlacementTrackingOption < Struct.new( :global, :tracked_isps) SENSITIVE = [] include Aws::Structure end  | 
  
#tracked_isps ⇒ Array<String>
An array of strings, one for each major email provider that the inbox placement data applies to.
      1718 1719 1720 1721 1722 1723  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 1718 class InboxPlacementTrackingOption < Struct.new( :global, :tracked_isps) SENSITIVE = [] include Aws::Structure end  |