Class: Aws::CustomerProfiles::Types::AppflowIntegrationWorkflowAttributes
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CustomerProfiles::Types::AppflowIntegrationWorkflowAttributes
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-customerprofiles/types.rb
 
Overview
Structure holding all ‘APPFLOW_INTEGRATION` specific workflow attributes.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #connector_profile_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the AppFlow connector profile used for ingestion.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the IAM role.
 - 
  
    
      #source_connector_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the source connector type, such as Salesforce, ServiceNow, and Marketo.
 
Instance Attribute Details
#connector_profile_name ⇒ String
The name of the AppFlow connector profile used for ingestion.
      204 205 206 207 208 209 210  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 204 class AppflowIntegrationWorkflowAttributes < Struct.new( :source_connector_type, :connector_profile_name, :role_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role. Customer Profiles assumes this role to create resources on your behalf as part of workflow execution.
      204 205 206 207 208 209 210  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 204 class AppflowIntegrationWorkflowAttributes < Struct.new( :source_connector_type, :connector_profile_name, :role_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#source_connector_type ⇒ String
Specifies the source connector type, such as Salesforce, ServiceNow, and Marketo. Indicates source of ingestion.
      204 205 206 207 208 209 210  | 
    
      # File 'lib/aws-sdk-customerprofiles/types.rb', line 204 class AppflowIntegrationWorkflowAttributes < Struct.new( :source_connector_type, :connector_profile_name, :role_arn) SENSITIVE = [] include Aws::Structure end  |